DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: can not drop queue tables

  1. #1
    Join Date
    Feb 2000
    Location
    New York,U.S.A.
    Posts
    245
    When I do
    select table_name from user_tables; It gives me
    VLAD_IN_T
    VLAD_OUT_T
    but when I do
    drop table vlad_in_t
    it tells me
    SQL> drop table vlad_in_t;
    drop table vlad_in_t
    *
    ERROR at line 1:
    ORA-24005: must use DBMS_AQADM.DROP_QUEUE_TABLE to drop queue tables
    when I do
    SQL> execute DBMS_AQADM.DROP_QUEUE_TABLE('VLAD_IN_T');
    BEGIN DBMS_AQADM.DROP_QUEUE_TABLE('VLAD_IN_T'); END;

    *
    ERROR at line 1:
    ORA-24002: QUEUE_TABLE HUBV2.VLAD_IN_T does not exist
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 2663
    ORA-06512: at "SYS.DBMS_AQADM", line 192
    ORA-06512: at line 1

    I need to drop the table VLAD_IN_T, can anyone tell me how to? why I can not drop the table while it does show up in user_table view? Thanks.

  2. #2
    Join Date
    Jul 2000
    Posts
    296
    Does it show up in USER_QUEUE_TABLES ?

  3. #3
    Join Date
    Feb 2000
    Location
    New York,U.S.A.
    Posts
    245
    No, it only shows in user_tables;

  4. #4
    Join Date
    Feb 2000
    Location
    New York,U.S.A.
    Posts
    245
    I resolve the issue from oracle support,
    It is a known bug with oracle 8i, which will be fixed in
    8.1.7. For the time being, you could do
    SQL>alter session set events '10851 trace name context forever, level 2 ';
    and then do drop table tablename; you will be O.K.



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width