zoukankan      html  css  js  c++  java
  • 查询数据表空间

    系统界面异常无法导出的时候,考虑下系统表空间是否不能扩展了.查询表空间脚本如下: 


    select upper(f.tablespace_name) "表空间名",
           d.tot_grootte_mb "表空间大小(M)",
           d.tot_grootte_mb - f.total_bytes "已使用空间(M)",
           to_char(round((d.tot_grootte_mb - f.total_bytes) / d.tot_grootte_mb * 100,
                         2),
                   '990.99') || '%' "使用比",
           f.total_bytes "空闲空间(M)",
           f.max_bytes "最大块(M)"
      from (select tablespace_name,
                   round(sum(bytes) / (1024 * 1024), 2) total_bytes,
                   round(max(bytes) / (1024 * 1024), 2) max_bytes
              from sys.dba_free_space
             group by tablespace_name) f,
           (select dd.tablespace_name,
                   round(sum(dd.bytes) / (1024 * 1024), 2) tot_grootte_mb
              from sys.dba_data_files dd
             group by dd.tablespace_name) d
     where d.tablespace_name = f.tablespace_name
     order by 1;

             

                成长

           /      |     \

        学习   总结   分享

    QQ交流群:122230156

  • 相关阅读:
    PB中的Grid视图
    MVC加jquery的无刷新列表分页摘要
    Quartz.Net 1.30的一些设置说明
    将Excel的数据库字典导到PDM中
    HubbleDotNet使用备忘
    EntLib5.0 日志应用程序块(logging) 使用与配置
    生成随机密码
    网站整合QQ登录
    PB代码参考段
    SQL查询之 Pivot 详解
  • 原文地址:https://www.cnblogs.com/benio/p/1890011.html
Copyright © 2011-2022 走看看