• oracle查看表空间的几个sql


    1.查看表空间大小及已经使用的百分比

    select   a.tablespace_name,a.bytes/1024/1024  "Sum MB",
      (a.bytes-b.bytes)/1024/1024  "used MB",
      b.bytes/1024/1024  "free MB",
      round(((a.bytes-b.bytes)/a.bytes)*100,2)  "percent_used"
    from (select tablespace_name,sum(bytes) bytes from dba_data_files group by tablespace_name) a, (select tablespace_name,sum(bytes) bytes,max(bytes) largest from dba_free_space group by tablespace_name) b where a.tablespace_name=b.tablespace_name order by ((a.bytes-b.bytes)/a.bytes) desc

    “Sum MB”表示表空间所有的数据文件总共在操作系统占用磁盘空间的大小
    比如:test表空间有2个数据文件,datafile1为300MB,datafile2为400MB,那么test表空间的“Sum MB”就是700MB
    “userd MB”表示表空间已经使用了多少
    “free MB”表示表空间剩余多少
    “percent_user”表示已经使用的百分比

    2.可以查看PAT表空间总共有几个数据文件,每个数据文件是否自动扩展,可以自动扩展的最大值。

    select   file_name,tablespace_name,bytes/1024/1024 "bytes MB",maxbytes/1024/1024 "maxbytes MB"  
    from dba_data_files where tablespace_name='PAT';

    3.删除表空间数据文件

    alter   tablespace   PAT  
    drop    datafile '/oracle/oms/oradata/mlog/PAT.dbf'  
  • 相关阅读:
    【Vjudge】P1989Subpalindromes(线段树)
    【Luogu】P3358最长k可重区间集问题(费用流)
    【未有之有】洛森设定随笔
    14-Perl 引用
    13-Perl 子程序(函数)
    12-Perl 时间日期
    11-Perl 运算符
    10-Perl 循环
    9-Perl 条件语句
    8-Perl 哈希
  • 原文地址:https://www.cnblogs.com/leiOOlei/p/2547999.html
Copyright © 2020-2023  润新知