首页 > 数据库 >oracle 表空间不够处理

oracle 表空间不够处理

时间:2022-10-20 14:59:31浏览次数:47  
标签:name 处理 sum bytes tablespace file oracle 不够 id

1、查询表空间情况:

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、新增表空间文件

alter tablespace ehrds  add datafile '/data/oracle/ehrds/ehrds1.dbf' size 32m autoextend on next 32m maxsize unlimited

注意,路径应跟查出来的表空间路径对应

 

标签:name,处理,sum,bytes,tablespace,file,oracle,不够,id
From: https://www.cnblogs.com/leolzi/p/16809838.html

相关文章