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