Help! Can't rename Oracle table. ORA-04043: object ... does not exist error?
I am having a problem renaming an Oracle table in Oracle 10.2.0.2.
Here's a log of the error. Can anyone help?
===
SQL> connect sappb1/password
Connected.
SQL> rename "ZUPG/BIC/B0000919000" to "/BIC/B0000919000";
rename "ZUPG/BIC/B0000919000" to "/BIC/B0000919000"
*
ERROR at line 1:
ORA-04043: object ZUPG/BIC/B0000919000 does not exist
===
But the table does exist:
===
SQL> select count(*) from sys.dba_objects where object_name = 'ZUPG/BIC/B0000919000';
0
SQL> select count(*) from sys.dba_objects where object_name like 'ZUPG/BIC/B0000919000%';
6
SQL> select * from sys.dba_objects where object_name like 'ZUPG/BIC/B0000919000%' and object_type='TABLE';
SAPPB1
ZUPG/BIC/B0000919000
6517121 TABLE
25-FEB-06 14-MAY-08 2008-05-14:10:35:53 VALID N N N
===
|