oracle下查看某个表空间下的表数量
前久导入库的时候发现很多表导入不了,查了下语句备用对比
select * from dba_tables where tablespace_name="表空间名",注意表空间名大小写敏感。
---当前用户的表数量
select table_name,tablespace_name from user_tables;
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。
前久导入库的时候发现很多表导入不了,查了下语句备用对比
select * from dba_tables where tablespace_name="表空间名",注意表空间名大小写敏感。
---当前用户的表数量
select table_name,tablespace_name from user_tables;