Oracle Database Pipes Report

Displays a list of all database pipes currently defined in the Oracle instance. Useful for monitoring inter-session communication mechanisms created using DBMS_PIPE.

oraclesqlmonitoring-alertsv1.0.0
0 stars0 downloads15 views0 comments
By OracleDba • Created

Code

(18 lines)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- -----------------------------------------------------------------------------------
-- 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;

General Comments(0)

Tip: Click on a line number in the code to add a line-specific comment

No general comments yet. Be the first to comment!