Miladin Modrakovic’s Blog: Oraclue

December 14, 2009

Open database with delay

Filed under: Internals — oraclue @ 6:11 pm

The event db_open_begin delay (opening database with delay)  is undocumented event ( read unsupported ) and it will do exactly what is says e.g. open database with delay .Although alter database open command is executed it will wait for specified interval before opening database.

So here is scenario:

SQL> startup mount;
ORACLE instance started.

Total System Global Area 2973003776 bytes
Fixed Size                  2217064 bytes
Variable Size            2080377752 bytes
Database Buffers          872415232 bytes
Redo Buffers               17993728 bytes
Database mounted.
SQL> oradebug setmypid
Statement processed.
SQL> oradebug event db_open_begin delay=10
Statement processed.
SQL> set timing on
SQL> alter database open;

Database altered.

Elapsed: 00:00:11.51

Database was opened after approx 12 sec ( 10 sec delay and 1.51sec to run all oracle code related to opening database  starting with  bootstrap$  object. )

alter system command will work too:

SQL> alter system set events ‘db_open_begin delay =50′;

December 7, 2009

High Availability – Oracle GoldenGate

Filed under: HA — oraclue @ 5:14 pm

The GoldenGate ( now owned by Oracle Corporation ) for Active-Active solution provides  real-time bidirectional data movement between heterogeneous dual-active or multi-master databases. GoldenGate’s Active-Active solution also offers advanced features for data conflict detection and resolution.

KEY FEATURES:

  • Allows application transactions to be distributed across multiple databases
  • Provides full bi-directional data movement without distance constraints
  • Allows conflict detection and resolution
  • Enables sub-second latency even at high data volumes
  • Preserves transaction integrity for confidence in data across multiple active environments
  • Decouples source and target environments to support a wide variety of heterogeneous databases and platforms

 

Main page:

http://www.oracle.com/technology/products/goldengate/index.html

Documentation:

http://download.oracle.com/docs/cd/E15881_01/index.htm

Additional downloads from  Oracle E delivery site:

http://edelivery.oracle.com/EPD/Download/get_form?egroup_aru_number=11897207

Blog at WordPress.com.