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

33
vg/nls_parameters.sql Normal file
View File

@@ -0,0 +1,33 @@
@@header
set term off
/*
*
* Author : Vishal Gupta
* Purpose : Display Tablespace usage
*
* Revision History:
* ===================
* Date Author Description
* --------- ------------ -----------------------------------------
* 05-Aug-04 Vishal Gupta First Draft
*/
set term on
COLUMN parameter HEADING "Parameter" FORMAT a25 ON
COLUMN Database HEADING "Database" FORMAT a30 ON
COLUMN Instance HEADING "Instance" FORMAT a30 ON
COLUMN Sesssion HEADING "Sesssion" FORMAT a30 ON
SELECT ndp.parameter
, max(ndp.value) Database
, max(nip.value) Instance
, max(nsp.value) Sesssion
FROM nls_session_parameters nsp
FULL OUTER JOIN nls_instance_parameters nip ON nip.parameter = nsp.parameter
FULL OUTER JOIN nls_database_parameters ndp ON ndp.parameter = nsp.parameter
group by ndp.parameter
ORDER BY parameter
;
@@footer