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 ;

查表空间安装目录,以及扩容语句

select a.file#,

a.name,

a.bytes / 1024 / 1024 CurrentMB,

ceil(HWM * a.block_size / 1024 / 1024) Resizeto,

(a.bytes - HWM * a.block_size) /1024 / 1024 releaseMB,

'alter database datafile ''' || a.name || ''' resize ' ||

ceil(HWM * a.block_size / 1024 / 1024) || 'M;' ResizeCmd

from v$datafile a,

(select file_id, max(block_id + blocks - 1) HWM

from dba_extents

group by file_id) b

where a.file# = b.file_id(+)

and (a.bytes - HWM * a.block_size) > 0

order by 5;

ORA-12953 :请求超出了允许的最大数据库大小11GB

用command window 打开尝试一下执行,

或者修改其他表空间的大小再修改那个表空间的大小

猜你喜欢

转载自my.oschina.net/u/3556610/blog/1793451