• 使用EM来查看表空间视图


    现在来简单看下如何使用EM来查看表空间视图

    在Administration-Storage-Tablespaces下可以查看表空间的各项指标:


    如下图显示了表空间的使用情况,总大小和剩余空间,百分比等,同时还可以对表空间进行简单的操作,点击表空间名称可以查看详细信息:


     

    另外,我们可以通过下面的SQL语句查询表空间的使用情况:

     

    SELECT a.tb_name 表空间名称,

          c.contents 类型,

          c.extent_management 区管理,

          b.total / 1024 / 1024 表空间大小m,

          (b.total - a.free_sp) / 1024 / 1024 已使用m,

          a.free_sp / 1024 / 1024 剩余m,

          substr((b.total - a.free_sp) / b.total * 100, 1, 5) 利用率

    FROM   (SELECT tablespace_name tb_name, SUM(nvl(bytes, 0)) free_sp

           FROM   dba_free_space

           GROUP  BY tablespace_name) a,

          (SELECT tablespace_name tb_name, SUM(bytes) total

           FROM   dba_data_files

           GROUP  BY tablespace_name) b,

          (SELECT tablespace_name tb_name, contents contents, extent_management extent_management

           FROM   dba_tablespaces) c

    WHERE  a.tb_name = b.tb_name

    AND    c.tb_name = b.tb_name;

     

    dba_free_space,dba_data_files,dba_tablespaces这三张数据字典表分别描述了:表空间空余大小,数据文件大小,以及表空间的使用情况。

  • 相关阅读:
    CentOS7搭建FTP服务器和安装FTP客户端
    Python实现网络和IP地址计算
    [Leetcode Weekly Contest]270
    [Leetcode Weekly Contest]269
    [Leetcode Weekly Contest]266
    Vue.use原理及源码解读
    Rust 程序设计语言 6
    go 语言的 Context
    Rust程序设计语言(7)
    手机界面设计中12种常用布局转载
  • 原文地址:https://www.cnblogs.com/jiangu66/p/3003062.html
Copyright © 2020-2023  润新知