
ORACLE SOLUTION: COMPLETE, OPEN, MODULAR AND INTEGRATED |
||||
SQL> select RELEASE_NAME from fnd_product_groups;
SQL>
select * from v$version;
SQL>
select * from v$version where
banner like ‘Oracle%’;
Version information can also be checked from Installed Products from the Oracle Universal Installer.
It will tell you what products is installed on the machine and also its version information.
The installer is located at $ORACLE_HOME/bin/runInstaller
Connect to sqlplus as sysdba it will give you the database version
/usr/bin/isainfo -kv
uname -m
Mode of Operation
|
SYNC/
ASYNC
|
Benefits
|
Drawbacks
|
Maximum Protection
|
SYNC
|
Never
any data loss, no data ever accepted on primary
without being on standby. |
Slower
response times on primary. Network disruption
between primary and secondary causes downtime of primary database. |
Maximum Availability
|
SYNC
|
Updates
must be on standby before accepted on primary,
network disruption means the primary continues running with updates sent to standby when it is available again. |
Slower
response times on primary. Data loss possible if
network fails and then site fails. |
Maximum Performance
|
ASYNC
|
No
performance slowdown for applications on primary.
|
Data
loss will happen
|