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

43
vg/sysaux_space_usage.sql Normal file
View File

@@ -0,0 +1,43 @@
@@header
/*
*
* Author : Vishal Gupta
* Purpose : Display SYSAUX occupant's tablespace space usage.
* Parameter : None
*
*
* Revision History:
* ===================
* Date Author Description
* --------- ------------ -----------------------------------------
* 20-May-15 Vishal Gupta Created
*
*/
PROMPT
PROMPT ######################
PROMPT SYSAUX Space Usage
PROMPT ######################
COLUMN occupant_name HEADING "Occupant Name" FORMAT a24
COLUMN schema_name HEADING "Schema Name" FORMAT a20
COLUMN space_usage HEADING "Space|Usage|(MB)" FORMAT 99,999,999
COLUMN move_procedure HEADING "Move Procedure" FORMAT a35
COLUMN move_procedure_desc HEADING "Move Procedure Desc" FORMAT a40
COLUMN occupant_desc HEADING "Occupant Desc " FORMAT a60
BREAK ON REPORT
COMPUTE SUM LABEL "Total" OF space_usage ON REPORT FORMAT 99,999,999
SELECT occupant_name
, round( space_usage_kbytes/1024) space_usage
, schema_name
, move_procedure
--, move_procedure_desc
, occupant_desc
FROM v$sysaux_occupants
ORDER BY space_usage desc
;
@@footer