如何知道oracle数据库哪些表是有数据的,哪些表是空的没有数据?
发布网友
发布时间:2022-04-15 01:13
我来回答
共3个回答
热心网友
时间:2022-04-15 02:43
select * from all_all_tables
这是查询Oracle中的所有的表,包括SYS用户下的,你可以根据表空间和所属用户来*查询结果
where owenr='' and tablespacename=''
想要查出没数据的话,all_all_tables中有个num_rows字段,记录该表数据是多少行的,rows=‘0’的肯定是没数据的,
select * from all_all_tables
where num_rows='0'
and owenr='所属用户' and tablespacename='所属表空间'
即可。
热心网友
时间:2022-04-15 04:01
比如:test表空间有2个数据文件,datafile1为300MB,datafile2为400MB,那么test表空间的“Sum MB”就是700MB
“userd MB”表示表空间已经使用了多少
“free MB”表示表空间剩余多少
“percent_user”表示已经使用的百分比
热心网友
时间:2022-04-15 05:35
select count(1) from 表名
大于 0 就是有记录
等于0 就是没有