科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道显示表空间的使用情况的SQL语句

显示表空间的使用情况的SQL语句

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

  col tsname format a16 justify c heading 'Tablespace'   col nfrags format 999,990 justify c heading 'Free|Frags'   col mxfra

作者:中国IT实验室 来源:中国IT实验室 2007年10月1日

关键字: SQL 数据库 SQL Server

  • 评论
  • 分享微博
  • 分享邮件

  col tsname format a16 justify c heading 'Tablespace'
  col nfrags format 999,990 justify c heading 'Free|Frags'
  col mxfrag format 999,999,990 justify c heading 'Largest|Frag (KB)'
  col totsiz format 999,999,990 justify c heading 'Total|(KB)'
  col avasiz format 999,999,990 justify c heading 'Available|(KB)'
  col pctusd format 990 justify c heading 'Pct|Used'
  select
  total.tablespace_name tsname,
  count(free.bytes) nfrags,
  nvl(max(free.bytes)/1024,0) mxfrag,
  total.bytes/1024 totsiz,
  nvl(sum(free.bytes)/1024,0) avasiz,
  (1-nvl(sum(free.bytes),0)/total.bytes)*100 pctusd
  from
  dba_data_files total,
  dba_free_space free
  where
  total.tablespace_name = free.tablespace_name(+)
  group by
  total.tablespace_name,
  total.bytes;

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章