美文网首页
oracle 表空间相关

oracle 表空间相关

作者: 只想做个俗人_贪财_好色 | 来源:发表于2020-04-07 09:41 被阅读0次
    --查询表空间是否自动扩充
    select file_name,autoextensible,increment_by from dba_data_files;
    
    --查询表空间
    select b.file_id 文件ID,
     b.tablespace_name 表空间,
     b.file_name 物理文件名,
     b.bytes 总字节数,
     (b.bytes-sum(nvl(a.bytes,0))) 已使用,
     sum(nvl(a.bytes,0)) 剩余,
     sum(nvl(a.bytes,0))/(b.bytes)*100 剩余百分比
     from dba_free_space a,dba_data_files b
     where a.file_id=b.file_id
     group by b.tablespace_name,b.file_name,b.file_id,b.bytes
     order by b.tablespace_name
    
    

    相关文章

      网友评论

          本文标题:oracle 表空间相关

          本文链接:https://www.haomeiwen.com/subject/ozcgphtx.html