2026-03-12 20:23:15
This commit is contained in:
29
vg/stats_aux.sql
Normal file
29
vg/stats_aux.sql
Normal 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
|
||||
Reference in New Issue
Block a user