2026-03-12 20:23:15
This commit is contained in:
19
timhall/monitoring/pipes.sql
Normal file
19
timhall/monitoring/pipes.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
-- -----------------------------------------------------------------------------------
|
||||
-- File Name : https://oracle-base.com/dba/monitoring/pipes.sql
|
||||
-- Author : Tim Hall
|
||||
-- Description : Displays a list of all database pipes.
|
||||
-- Requirements : Access to the V$ views.
|
||||
-- Call Syntax : @pipes
|
||||
-- Last Modified: 15/07/2000
|
||||
-- -----------------------------------------------------------------------------------
|
||||
SET LINESIZE 100
|
||||
|
||||
COLUMN name FORMAT A40
|
||||
|
||||
SELECT ownerid,
|
||||
name,
|
||||
type,
|
||||
pipe_size
|
||||
FROM v$db_pipes
|
||||
ORDER BY 1,2;
|
||||
|
||||
Reference in New Issue
Block a user