oracle 查看某个表空间下有多少表
select * from all_tables where tablespace_name='TRAIN';
oracle 查看某个表空间下,某个用户有多少表
select * from all_tables where tablespace_name='TRAIN' and owner='TRAIN';
本文介绍如何使用Oracle SQL查询特定表空间中的所有表以及特定用户在该表空间中的所有表。
oracle 查看某个表空间下有多少表
select * from all_tables where tablespace_name='TRAIN';
oracle 查看某个表空间下,某个用户有多少表
select * from all_tables where tablespace_name='TRAIN' and owner='TRAIN';

被折叠的 条评论
为什么被折叠?