Drop Table Patition
hi,
I need to delete some audit tables, but when trying to delete states the following.
SQL> drop table "SYS.BIN$zfB6pVncR6zgRAAhKA1jjg==$0";
drop table "SYS.BIN$zfB6pVncR6zgRAAhKA1jjg==$0"
*
ERROR at line 1:
ORA-00972: identifier is too long
also use
SQL> drop table "SYS.BIN$zfB6pVncR6zgRAAhKA1jjg==$0" purge;
drop table "SYS.BIN$zfB6pVncR6zgRAAhKA1jjg==$0" purge
*
ERROR at line 1:
ORA-00972: identifier is too long
how could I do this??'
0