Dbms_utility provides a procedure to find various objects dependent on a particular object. This package has a procedure, get_dependency, which uses dbms_output procedure to print the list of objects which are dependent on the given object.
Syntax is:
DBMS_UTILITY.GET_DEPENDENCY
type IN VARCHAR2,
schema IN VARCHAR2,
name IN VARCHAR2);
Example usage: set serveroutput on;
BEGIN
dbms_utility.get_dependency('TABLE','HR','EMPLOYEES');
END;
This would list the objects dependent on employees table in HR schema as below in my hr schema: DEPENDENCIES ON HR.EMPLOYEES
------------------------------------------------------------------
*TABLE HR.EMPLOYEES()
* VIEW HR.EMP_DETAILS_VIEW()
* TRIGGER HR.SECURE_EMPLOYEES()
* TRIGGER HR.UPDATE_JOB_HISTORY()
* PROCEDURE HR.ANNUAL_SALARY()
Regards,Vijay
No comments :
Post a Comment