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

  • 相关阅读:
    645. 错误的集合
    88. 合并两个有序数组
    125. 验证回文串
    常用的浏览器
    网页的相关概念
    HTML简介
    商城搜索解决方案
    用VirtualBox安装Centos7
    Eureka自我保护机制
    服务发现Discovery(查看运行的服务)
  • 原文地址:https://www.cnblogs.com/benio/p/1890011.html
Copyright © 2011-2022 走看看