Oracle 表空间查询与操作

1.查询oracle表空间的使用情况

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
2、查看用户自定义的表空间
SELECT *
  FROM DBA_TABLESPACES
where TABLESPACE_name not in
       ('SYSAUX', 'SYSTEM', 'USERS', 'UNDOTBS1', 'TEMP', 'EXAMPLE')
order by TABLESPACE_name;

猜你喜欢

转载自fangzi370307.iteye.com/blog/1732159