码迷,mamicode.com
首页 > 其他好文 > 详细

计算表空间可以收缩的大小

时间:2016-02-05 01:32:31      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

 1 select a.file#,a.name,a.bytes/1024/1024 CurrentMB,
 2      ceil(HWM * a.block_size)/1024/1024 ResizeTo,
 3        (a.bytes - HWM * a.block_size)/1024/1024 ReleaseMB,
 4        alter database datafile ‘‘‘||a.name||‘‘‘ resize ||
 5        ceil(HWM * a.block_size/1024/1024) || M; ResizeCMD
 6 from v$datafile a,
 7      (select file_id,max(block_id+blocks-1) HWM
 8        from dba_extents e 
 9        where exists(select 1 From dba_data_files
10                              where tablespace_name=LMPS_USERS_201307 and file_id=e.file_id)
11        group by file_id) b
12 where a.file# = b.file_id(+)
13 and (a.bytes - HWM *block_size)>0
14 order by 5

 

计算表空间可以收缩的大小

标签:

原文地址:http://www.cnblogs.com/wangxingc/p/5182346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!