sql - Seaching For Text Within Oracle Stored Procedures -


i need search through of stored procedures in oracle database using toad. looking anywhere developers used max + 1 instead of nextval on sequence next id number.

i've been doing sql server years , know several ways there none helping me here.

i've tried using

select * user_source upper(text) '%blah%' 

results returned default schema , not schema need searching in.

i tried below errors

select * schemaname.user_source upper(text) '%blah%' 

can point me in right direction. doesn't seem should difficult.

thanks!

 select * all_source upper(text) '%blah%' 

edit adding additional info:

 select * dba_source upper(text) '%blah%' 

the difference dba_source have text of stored objects. all_source have text of stored objects accessible user performing query. oracle database reference 11g release 2 (11.2)

another difference may not have access dba_source.


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -