[Home] [Help]
[Dependency Information]
Object Name: | DBA_SYNONYMS |
---|---|
Object Type: | VIEW |
Owner: | SYS |
Subobject Name: | |
Status: | VALID |
All synonyms in the database
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
OWNER | VARCHAR2 | (128) | Yes | Username of the owner of the synonym |
SYNONYM_NAME | VARCHAR2 | (128) | Yes | Name of the synonym |
TABLE_OWNER | VARCHAR2 | (128) | Owner of the object referenced by the synonym | |
TABLE_NAME | VARCHAR2 | (128) | Yes | Name of the object referenced by the synonym |
DB_LINK | VARCHAR2 | (128) | Name of the database link referenced in a remote synonym | |
ORIGIN_CON_ID | NUMBER | ID of Container where row originates |
Cut, paste (and edit) the following text to query this object:
SELECT OWNER
, SYNONYM_NAME
, TABLE_OWNER
, TABLE_NAME
, DB_LINK
, ORIGIN_CON_ID
FROM SYS.DBA_SYNONYMS;
|
|
|