Skip to content

Instantly share code, notes, and snippets.

@sachin-handiekar
Created November 3, 2011 21:32
Show Gist options
  • Save sachin-handiekar/1337838 to your computer and use it in GitHub Desktop.
Save sachin-handiekar/1337838 to your computer and use it in GitHub Desktop.
Create a Oracle AQ Queue
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