Created
August 8, 2014 06:51
-
-
Save yujihamaguchi/a7c7aef21fc0eeb187f2 to your computer and use it in GitHub Desktop.
[Oracle] オブジェクトを指定し、そのオブジェクトに依存しているオブジェクトをリストする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
owner | |
,name | |
,type | |
,referenced_link_name | |
,dependency_type | |
FROM | |
dba_dependencies | |
WHERE | |
referenced_owner = UPPER('&owner') | |
AND referenced_name = UPPER('&object_name') | |
/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment