Call (800) 766-1884 for Oracle support & training
Free Oracle Tips


Oracle Consulting Support
Oracle Upgrades
Use New Oracle Features
Oracle Replication Support
Oracle Training
Remote Oracle DBA
System Documentation
Oracle Tips
Oracle Performance
 

Free Oracle Tips


 

HTML Text

BC Oracle tuning

Oracle training

Oracle support

Remote Oracle

 

 

   
  Oracle Tips by Burleson

Oracle Streams
Chapter 4 - Capture and Propagate Configuration

Managing the Propagation Job

Enabling and Disabling the Propagation Job

By default the propagation jobs are enabled when propagation is created. If a propagation job is disabled for any specific reason and subsequently it needs to be enabled, the enable_propagation_schedule procedure in the dbms_aqadm package can be used to enable it.

For example, to enable a propagation job that propagates events from the NY4_QUEUE source queue using the DNYOIP20.world database link, the following SQL block should be run:

BEGIN
DBMS_AQADM.ENABLE_PROPAGATION_SCHEDULE(
queue_name => 'strmadm.NY4_QUEUE',
destination => 'DNYOIP20.world');
END;
/

To disable the propagation job that stops the event propagation, use the following SQL block:

BEGIN
DBMS_AQADM.DISABLE_PROPAGATION_SCHEDULE(
queue_name => 'strmadm.NY4_QUEUE',
destination => 'DNYOIP20.world');
END;
/


The above text is an excerpt from:

Oracle Streams
High Speed Replication and Data Sharing

ISBN 0-9745993-5-2

by Madhu Tumma
 


Download your Oracle scripts now:

www.oracle-script.com

The definitive Oracle Script collection for every Oracle professional DBA

  
 

Oracle performance tuning software 
 
 
 
 

Oracle performance tuning book

 

 
 
 
Oracle performance Tuning 10g reference poster
 
 
 
Oracle training in Linux commands
 
Oracle training Excel
 
Oracle training & performance tuning books
 

 

   

Copyright © 1996 -  2011 by Burleson Enterprises. All rights reserved.

Oracle® is the registered trademark of Oracle Corporation.