Skip to content

Instantly share code, notes, and snippets.

@sachin-handiekar
Created November 3, 2011 21:31
Show Gist options
  • Save sachin-handiekar/1337835 to your computer and use it in GitHub Desktop.
Save sachin-handiekar/1337835 to your computer and use it in GitHub Desktop.
Create a Oracle AQ Queue Table with XMLType payload
BEGIN
DBMS_AQADM.CREATE_QUEUE_TABLE( Queue_table => 'QT_SAMPLE', Queue_payload_type => 'SYS.XMLTYPE', Sort_list => 'ENQ_TIME', COMMENT => 'A sample queue table');
END;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment