Created
November 18, 2014 16:23
-
-
Save sachin-handiekar/8b20e08e55829c53fc0b to your computer and use it in GitHub Desktop.
CREATE_QUEUE_ORACLE_AQ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BEGIN | |
DBMS_AQADM.CREATE_QUEUE( | |
Queue_name => 'Q_SAMPLE', | |
Queue_table => 'QT_SAMPLE', | |
Queue_type => 0, | |
Max_retries => 5, | |
Retry_delay => 10); | |
END; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment