Created
March 25, 2013 13:10
-
-
Save hanson-andrew/5236989 to your computer and use it in GitHub Desktop.
Pl/SQL snippet to search for text inside compiled procedures/functions. Courtesy of: http://stackoverflow.com/questions/853547/sql-to-search-objects-including-stored-procedures-in-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, line, text | |
| FROM dba_source | |
| WHERE instr(UPPER(text), UPPER(:srch_str)) > 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment