DROP_QUEUE_TABLE v17
Use the DROP_QUEUE_TABLE
procedure to delete a queue table. The signature is:
Parameters
queue_table
The (optionally schema-qualified) name of the queue table.
force
The force
keyword determines the behavior of the DROP_QUEUE_TABLE
command when dropping a table that contain entries:
- If the target table contains entries and
force
isFALSE
, the command fails, and the server issues an error. - If the target table contains entries and
force
isTRUE
, the command drops the table and any dependent objects.
auto_commit
auto_commit
is accepted for compatibility but is ignored.
Example
The following anonymous block drops a table named work_order_table
:
- On this page
- Parameters
- Example