当前位置: 代码迷 >> Oracle开发 >> user_tables的有关问题,表删除后,user_tables还存在该表
  详细解决方案

user_tables的有关问题,表删除后,user_tables还存在该表

热度:77   发布时间:2016-04-24 07:28:33.0
user_tables的问题,表删除后,user_tables还存在该表


t1是张外部表
执行drop table t1;



然后查
select * from user_tables
where table_name ='t1';
还存在啊,且status是“VALID”

为什么??



------解决方案--------------------
执行
drop table t1 purge;
------解决方案--------------------
用drop table t,在user_tables中不存在
------解决方案--------------------
select * from user_tables
where table_name ='t1'

加上 ower_name 是不是其他用户还有这个表
------解决方案--------------------
select * from user_tables
where table_name ='t1'
给点分吧,
  相关解决方案