vote up 3 vote down star
2

SELECT * from ALL_OBJECTS returns the names of various procedures/packages/tables/other db objects. I want to look inside the PL/SQL code for a matching string. How do I do this?

Something like: (pseudocode) SELECT * FROM all_code WHERE line_of_code like '%mytext%'

flag

1 Answer

vote up 7 vote down check

You can do something like:

    SELECT * 
      FROM USER_SOURCE 
     WHERE type='PACKAGE' 
       AND NAME='PACKAGE_NAME' 
  ORDER BY type, name, line;

There are many options you can do, but check out the USER_SOURCE table

So if you want to search ALL code for a String, then I would do:

  SELECT *
    FROM USER_SOURCE
   WHERE UPPER(text) LIKE UPPER('%what I am searching for%')
ORDER BY type, name, line

Update from comments

I got some good comments (if I could +1 you I would). I was providing a search for only your files. If you want to search ALL code, then use:

  SELECT *
    FROM ALL_SOURCE
   WHERE UPPER(text) LIKE UPPER('%what I am searching for%')
ORDER BY type, name, line
link|flag
1  
Or ALL_SOURCE WHERE OWNER = [schema] – cagcowboy Mar 10 at 15:56
1  
You might want to "ORDER BY type, name, line" to make the results clearer. – Barry Mar 10 at 16:01
1  
Make it case insensitive: where upper(text) like upper(%what I am searching for%') – tuinstoel Mar 10 at 16:06
Glad we all could help :o) – Ascalonian Mar 10 at 17:18
I don't believe all_source will show package bodies owned by other users. You can use dba_source to see those if you have access. – Daniel Emge Mar 10 at 20:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.