[Home] [Help]
[Dependency Information]
Object Name: | DBA_SOURCE |
---|---|
Object Type: | VIEW |
Owner: | SYS |
Subobject Name: | |
Status: | VALID |
Source of all stored objects in the database
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
OWNER | VARCHAR2 | (128) | ||
NAME | VARCHAR2 | (128) | Name of the object | |
TYPE | VARCHAR2 | (12) | Type of the object: "TYPE", "TYPE BODY", "PROCEDURE", "FUNCTION", "PACKAGE", "PACKAGE BODY", "LIBRARY", "ASSEMBLY" or "JAVA SOURCE" | |
LINE | NUMBER | Line number of this line of source | ||
TEXT | VARCHAR2 | (4000) | Source text | |
ORIGIN_CON_ID | NUMBER | ID of Container where row originates |
Cut, paste (and edit) the following text to query this object:
SELECT OWNER
, NAME
, TYPE
, LINE
, TEXT
, ORIGIN_CON_ID
FROM SYS.DBA_SOURCE;
|
|
|