📄 pipes.sql
字号:
--* File Name : Pipes.sql
--* Author : DR Timothy S 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 500
SET PAGESIZE 1000
SET VERIFY OFF
SELECT a.ownerid "Owner",
Substr(name,1,40) "Name",
type "Type",
pipe_size "Size"
FROM v$db_pipes a
ORDER BY 1,2;
SET PAGESIZE 14
SET VERIFY ON
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -