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

29
vg/stats_aux.sql Normal file
View File

@@ -0,0 +1,29 @@
@@header
/*
*
* Author : Vishal Gupta
* Purpose : Display system statistics information
*
* Revision History:
* ===================
* Date Author Description
* --------- ------------ -----------------------------------------
* 29-Dec-14 Vishal Gupta Created
*
*/
COLUMN sname HEADING "Stat Type" FORMAT a15
COLUMN pname HEADING "Stat Name" FORMAT a15
COLUMN value HEADING "Value" FORMAT a30
SELECT sname
, pname
, TRIM(NVL(TO_CHAR(pval1,'999,999,999'),pval2)) value
FROM sys.aux_stats$
;
@@footer