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

52
vg/dnfs_paths.sql Normal file
View File

@@ -0,0 +1,52 @@
@@header
/*
*
* Author : Vishal Gupta
* Purpose : Display dNFS paths
* Version :
* Parameters :
*
*
* Revision History:
* ===================
* Date Author Description
* --------- ------------ -----------------------------------------
* 28-Oct-15 Vishal Gupta Created
*
*/
/************************************
* INPUT PARAMETERS
************************************/
/************************************
* CONFIGURATION PARAMETERS
************************************/
Prompt ************************
Prompt * dNFS Channels
Prompt ************************
COLUMN inst_id HEADING "I#" FORMAT 99
COLUMN svrname HEADING "ServerName" FORMAT a20
COLUMN path HEADING "Path" FORMAT a20
COLUMN local HEADING "local" FORMAT a20
BREAK ON inst_id ON svrname ON path
SELECT distinct
inst_id
, svrname
, path
, local
FROM gv$dnfs_channels
ORDER BY inst_id
, svrname
, path
;
@@footer