度量快速开发平台-专业、快速的软件定制快开平台

标题: 当前用户默认表空间使用情况及单张表使用情况 [打印本页]

作者: 张兴康    时间: 2020-6-8 17:14
标题: 当前用户默认表空间使用情况及单张表使用情况
当前用户默认表空间使用情况
select tablespacename,
       sum(totalContent),
       sum(usecontent),
       sum(sparecontent),
       avg(sparepercent)
  from (SELECT b.file_id as id,
               b.tablespace_name as tablespacename,
               b.bytes as totalContent,
               (b.bytes - sum(nvl(a.bytes, 0))) as usecontent,
               sum(nvl(a.bytes, 0)) as sparecontent,
               sum(nvl(a.bytes, 0)) / (b.bytes) * 100 as sparepercent
          FROM dba_free_space a, dba_data_files b
         WHERE a.file_id = b.file_id
           and b.tablespace_name =
               (select default_tablespace
                  from dba_users
                 where username = user)
         group by b.tablespace_name, b.file_name, b.file_id, b.bytes)
GROUP BY tablespacename

执行效果:


单张表使用情况
select segment_name, bytes
  from dba_segments
where segment_name = '表名'
   and owner = USER;


执行效果:



作者: 张兴康    时间: 2020-6-8 17:14
自顶一个
作者: 万望    时间: 2020-6-9 22:18
两个字:哇撒(*@ο@*) 哇~
作者: 陈晓龙    时间: 2020-6-11 15:01
万望 发表于 2016-1-9 22:18
两个字:哇撒(*@ο@*) 哇~

这是很多字样!
作者: 陈晓龙    时间: 2020-6-11 15:02
收藏了,以后好查询!
作者: 王爱东    时间: 2020-6-11 15:40
好东西收藏。
作者: 张兴康    时间: 2020-6-11 17:45
陈晓龙 发表于 2016-1-11 15:01
这是很多字样!

别理那个二货
作者: 陈晓龙    时间: 2020-6-12 14:58
张兴康 发表于 2016-1-11 17:45
别理那个二货

要得,不理那个二货!




欢迎光临 度量快速开发平台-专业、快速的软件定制快开平台 (http://plat.delit.cn/) Powered by Discuz! X3.2