IT猫扑网 ● 文章教程
分类分类
2015-06-28 00:00作者:网管联盟
查看oracle数据库表空间及其空间大小
select t.tablespace_name, round(sum(bytes / (1024 * 1024)), 0) ts_size
from dba_tablespaces t, dba_data_files d
where t.tablespace_name = d.tablespace_name
group by t.tablespace_name;
相关文章