Skip to content

Commit 37248f3

Browse files
committed
Shows roll back segment extensions to show if they are sized correctly
1 parent c2bdec3 commit 37248f3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

rollback_extensions.sql

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
REM Filename : rollback_extensions.sql
2+
REM Author : Craig Richards
3+
REM Created :
4+
REM Version : 1.0
5+
REM Modifications :
6+
REM
7+
REM Description : Shows roll back segment extensions to show if they are sized correctly
8+
9+
SET PAUSE OFF
10+
SET FEEDBACK OFF
11+
12+
COLUMN name FORMAT A20
13+
14+
SELECT name, optsize, shrinks, aveshrink, extends,wraps
15+
FROM v$rollstat, v$rollname
16+
WHERE v$rollstat.usn=v$rollname.usn;
17+
18+
REM End of Script

0 commit comments

Comments
 (0)