?? 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 + -