2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

12
vdh/top_next_extents.sql Normal file
View 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;