2026-03-12 20:23:15
This commit is contained in:
12
vdh/top_next_extents.sql
Normal file
12
vdh/top_next_extents.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
column curr_mb format 999G999G999D99
|
||||
column next_mb format 999G999D99
|
||||
|
||||
select *
|
||||
from ( select segment_name, segment_type, round(bytes/1024/1024,2) curr_mb,
|
||||
round(next_extent/1024/1024,2) next_mb, pct_increase
|
||||
from dba_segments
|
||||
where tablespace_name = '&1'
|
||||
order by next_mb desc
|
||||
)
|
||||
where rownum <= 10;
|
||||
|
||||
Reference in New Issue
Block a user