Oracle - Zombie Table

别说谁变了你拦得住时间么 提交于 2019-12-05 10:25:22

If have privileges, try this query:

SELECT *
  FROM dba_objects
 WHERE object_name = 'MYTABLE';

And see what objects exist with that name. It might point you in the right direction.

You didn't qualify the schema names when trying to select and drop. The CURRENT_SCHEMA of your session may be different form the log-on user. Check by trying

select SYS_CONTEXT('USERENV', 'CURRENT_SCHEMA') from dual;

Instead of describing what the output was, could you please copy/paste the complete output for us?

Lastly, can you exclude that someone messed up the dictionary? You know, SYSDBA can do anything....

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!