日期:2014-05-17  浏览次数:21402 次

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'
给点分吧,