Topic: Database Administration >> Need help, Urgent.: about index
|
Disclaimer: The purpose of all dbapool forums including OCP and Other Oracle Certification forums is to help each other with specific issues but not to share dump and copyrighted exam content, materials or intellectual property.
You may review the entire Oracle Certification Program Candidate Agreement online Here.
|
|
|
|
| Title: Need help, Urgent.: about index |
| dipali |
Posted: Apr 10, 2007 03:06:38 AM |
Total Post: 35
Joined: Dec, 2006
|
dear all,
i have some problem regarding index in our database.
when i fire the query :
select * from all_indexes where table_name like 'PARA';
i get the following index:
index name : BIN$G9QHFTx8iILgQAB/AQBvkQ==$0
it is in tablespace 'APP_INDEX'.
status = Valid.
The problem is : when i try to drop this index with command
drop index BIN$G9QHFTx8iILgQAB/AQBvkQ==$0;
the error comes like following:
ORA-00953: missing or invalid index name.
i afraid that the original index ( named PARA_X ) is corrupted..
the database is up for 24 hours..
So please guide me how should i drop this index. |
|
|
Sabdar Syed |
| Posted: Apr 10, 2007 06:07:03 AM | |
|
Total Post: 39
Joined: Mar, 2007
|
It looks like you are on Oracle 10g.
Whenever a object is dropped from the database (10g), the dropped object is kept in recyclebin area with starting BIN$ name. If you feel the dropped objects are not required, you can clear the recyclebin.
To know the dropped objects in recyclebin.
SQL> select object_name,original_name,type from user_recyclebin;
OBJECT_NAME ORIGINAL_NAME TYPE
------------------------------ -------------------------------- -------------------------
BIN$rbbGpoBRTUG9bnVcSu1vMA==$0 USER_NAME_KEY INDEX
To Purge the recyclebin.
SQL> purge recyclebin;
Recyclebin purged.
Regards,
Sabdar Syed.
|
|
|
|
|
| Time Zone: EDT |
Send this thread to your friend |
|
|
|
|
Forum Rules & Description
Who Can Read The Forum? Any registered user or guest
Who Can Post New Topics? Any registered user
Who Can Post Replies? Any registered user
|
| |
Get FREE Magazines
|
Top 10 Forum User
|
| Murtuja Khokhar | 857 |
| Mohammed Taj | 746 |
| positive fanatic | 483 |
| Jayanta Sur | 479 |
| Vigyan Kaushik | 386 |
| Gopu Gopi | 333 |
| Gitesh Trivedi | 322 |
| Vinoth Kumar | 264 |
| neeraj sharma | 258 |
| Ramesh Jois | 246 |
|
|