user_tables的问题,表删除后,user_tables还存在该表t1是张外部表执行drop table t1然后查select * from u
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'
给点分吧,
