Skip to content

Instantly share code, notes, and snippets.

@sachin-handiekar
Created November 18, 2014 16:23
Show Gist options
  • Save sachin-handiekar/8b20e08e55829c53fc0b to your computer and use it in GitHub Desktop.
Save sachin-handiekar/8b20e08e55829c53fc0b to your computer and use it in GitHub Desktop.
CREATE_QUEUE_ORACLE_AQ
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