Oracle 11gR1
DBA_DEPENDENCIES
describes all dependencies in the database between procedures, packages, functions, package bodies, and triggers, including dependencies on views created without any database links. Its columns are the same as those in ALL_DEPENDENCIES.
· ALL_DEPENDENCIES
describes dependencies between procedures, packages, functions, package bodies, and triggers accessible to the current user, including dependencies on views created without any database links. This view does not display the SCHEMAID
column.
· USER_DEPENDENCIES
describes dependencies between objects in the current user's schema. This view does not display the OWNER
column.
Column | Datatype | NULL | Description |
|
|
| Owner of the object |
|
|
| Name of the object |
|
| | Type of the object |
|
| | Owner of the referenced object (remote owner if remote object) |
|
| | Name of the referenced object |
|
| | Type of the referenced object |
|
| | Name of the link to the parent object (if remote) |
|
| | ID of the current schema |
|
| | Indicates whether the dependency is a |
Note:
1.
select * from DBA_DEPENDENCIES where owner = 'CSMIG';
OWNER | NAME | TYPE | REFERENCED_ OWNER | REFERENCED_ NAME | REFERENCED_ TYPE | REFERENCED_ LINK_NAME | DEPENDENCY_ TYPE |
CSMIG | CSMV$TRIGGERS | VIEW | SYS | USER$ | TABLE | | HARD |
CSMIG | CSMV$TABLES | VIEW | SYS | USER$ | TABLE | | HARD |
CSMIG | CSMV$INDEXES | VIEW | SYS | USER$ | TABLE | | HARD |
CSMIG | CSMV$INDEXES | VIEW | CSMIG | CSM$INDEXES | TABLE | | HARD |
CSMIG | CSMV$TABLES | VIEW | CSMIG | CSM$TABLES | TABLE | | HARD |
CSMIG | CSMV$TRIGGERS | VIEW | CSMIG | CSM$TRIGGERS | TABLE | | HARD |
No comments:
Post a Comment