http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_2063.htm
오라클의 객체(프로시저...)를 보기 위해서는 다음의 테이블 ALL_SOURCE 을 이용하면 된다.
참조 : http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_2063.htm
ALL_SOURCE
ALL_SOURCE
describes the text source of the stored objects accessible to the current user.
Related Views
-
DBA_SOURCE
describes the text source of all stored objects in the database. -
USER_SOURCE
describes the text source of the stored objects owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
OWNER |
VARCHAR2(30) |
NOT NULL |
Owner of the object |
NAME |
VARCHAR2(30) |
NOT NULL |
Name of the object |
TYPE |
VARCHAR2(12) |
Type of object: FUNCTION , JAVA SOURCE , PACKAGE , PACKAGE BODY , PROCEDURE , TRIGGER , TYPE , TYPE BODY | |
LINE |
NUMBER |
NOT NULL |
Line number of this line of source |
TEXT |
VARCHAR2(4000) |
Text source of the stored object |
'DB' 카테고리의 다른 글
SQL query timeout이 나거든.. (0) | 2009.10.29 |
---|---|
테이블 구조 및 복제하기 (0) | 2009.10.23 |
Statement, PreparedStatement 성능 비교 (0) | 2009.08.13 |
Delete와 Truncate의 차이점 (0) | 2009.07.23 |
Oracle Client 10g 무한 루프 현상 (0) | 2009.07.22 |