can't drop user doe to non-extant que table
I'm in a pickle!
SQL> drop user utl cascade;
drop user utl cascade
*
ERROR at line 1:
ORA-00604: error occurred at recursive SQL level 1
ORA-24005: must use DBMS_AQADM.DROP_QUEUE_TABLE to drop queue tables
SQL> select * from dba_queue_tables where owner = 'UTL';
no rows selected
Looking through dba_queues and dba_queue_tables I see nothing related to this user. How can I find the offending opbject?
Thanks
Steve