Thursday, February 14, 2013
Purge Queue
BEGIN
DBMS_SCHEDULER.create_job (
job_name => 'purge_boqueue',
job_type => 'PLSQL_BLOCK',
job_action => 'DECLARE po_t dbms_aqadm.aq$_purge_options_t;
BEGIN dbms_aqadm.purge_queue_table(''LDBO.TBLDIGITALBOQUEUE'', NULL, po_t); END;',
start_date => '28-APR-13 04.20.00 AM ASIA/CALCUTTA',
repeat_interval => 'freq=DAILY',
end_date => NULL,
enabled => TRUE,
comments => 'purge queue table');
END;
/
BEGIN
DBMS_SCHEDULER.create_job (
job_name => 'purge_mainboqueue',
job_type => 'PLSQL_BLOCK',
job_action => 'DECLARE po_t dbms_aqadm.aq$_purge_options_t;
BEGIN dbms_aqadm.purge_queue_table(''LDBO.TBLMAINBOQUEUE'', NULL, po_t); END;',
start_date => '28-APR-13 04.30.00 AM ASIA/CALCUTTA',
repeat_interval => 'freq=DAILY',
end_date => NULL,
enabled => TRUE,
comments => 'purge queue table');
END;
/
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment