﹤ Oracle
日期:2015-06-28 00:00:00 来源: IT猫扑网
查看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;
相关文章
相关下载
网友评论