Last active
August 29, 2015 13:57
-
-
Save jaehoo/9797278 to your computer and use it in GitHub Desktop.
Oracle Querys List Store Procedures
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
-- List all | |
SELECT * FROM User_Procedures; | |
SELECT * FROM DBA_Procedures; | |
-- Find procedure and source | |
SELECT * FROM DBA_Procedures WHERE PROCEDURE_NAME = 'PROCEDURE_NAME'; | |
SELECT * FROM User_Source WHERE name = 'PROCEDURE_NAME' ; | |
SELECT * FROM DBA_Source WHERE name = 'PROCEDURE_NAME'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment