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

Thread: ORA-00054: resource busy error

  1. #1
    Join Date
    Dec 2000
    Posts
    40
    Hi friends,

    when tried to analyze an index, it is giving me the following error. why?

    SQL> analyze index idx_fdx_key validate structure;

    analyze index idx_fdx_key validate structure
    *
    ERROR at line 1:
    ORA-00054: resource busy and acquire with NOWAIT specified

    thanks

    ms reddy

  2. #2
    Join Date
    Feb 2001
    Posts
    180
    Seems that another program/ statement is using the index by mutating the table or something.
    Just wait until its finished
    Regards
    Ben de Boer

  3. #3
    Join Date
    Apr 2001
    Posts
    17
    When you analyze the index, exclusive locks will be acquired on the index and the underlying table. If another user/package is currently modifying that table and has not committed, you will get the ORA-54 error.

    Determine who is accessing which table by joining the V$LOCKED_OBJECT.object_id = DBA_OBJECTS.object_id

    Have fun!

    Go the Wallabies!

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