Created
February 21, 2017 15:21
-
-
Save attibalazs/2ca4102de86319eb9b276d7ebe402877 to your computer and use it in GitHub Desktop.
Get all dependencies for oracle table or view. A hierarchical query which goes through the dependency tree.
This file contains 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 distinct * | |
from all_dependencies a | |
start with a.referenced_name = 'TEST' | |
connect by NOCYCLE prior a.name = a.referenced_name; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
exactly what i needed, thanks!