码迷,mamicode.com
首页 > 数据库 > 详细

oracle查看用户所占用的表空间

时间:2015-08-07 01:42:24      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

select *
  from (select owner || . || tablespace_name name, sum(b) g
          from (select owner,
                       t.segment_name,
                       t.partition_name,
                       round(bytes / 1024 / 1024 / 1024, 2) b,
                       tablespace_name
                  from dba_segments t)
         where owner not in
               (SYS, OUTLN, SYSTEM, TSMSYS, DBSNMP, WMSYS)
         group by owner || . || tablespace_name)
 order by name;

 

oracle查看用户所占用的表空间

标签:

原文地址:http://www.cnblogs.com/cyhj/p/4709580.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!