How to find which two databases are configured for streams [message #75748] |
Mon, 25 October 2004 22:43 |
Deepa
Messages: 269 Registered: November 2000
|
Senior Member |
|
|
I am new to streams.Was given a box in which already streams has been setup between two Databases.
I have a box in which about 5 Databases are running.I know the source stream Database.
How to find out which is the Destination Database.
|
|
|
|
Re: How to find which two databases are configured for streams [message #75760 is a reply to message #75752] |
Tue, 28 December 2004 21:11 |
Gangadhar
Messages: 3 Registered: April 2001
|
Junior Member |
|
|
Check your database using the following query
Test your Streams configuration.
At the destination database
SQL> select apply_name,queue_name,apply_user, status from dba_apply;
SQL>
APPLY_NAME QUEUE_NAME APPLY_USER STATUS
------------------------------ ------------------------------ ---------------------
STRMADMIN_LOCAL STREAMS_QUEUE STRMADMIN ENABLED
At the source database
SQL> select capture_name,queue_name,status from dba_capture;
SQL>
CAPTURE_NAME QUEUE_NAME STATUS
------------------------------ ------------------------------ --------
STRMADMIN_CAPTURE STREAMS_QUEUE ENABLED
|
|
|
|