Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Oracle DB Object Search 1

Status
Not open for further replies.

speial

Programmer
May 5, 2003
15
US
I am reverse engineering an application process. The application is on Oracle 10G DB. I want to search all DB Objects for a particular text string. I am using SQL Navigator as the development tool.

Example > I am looking for the string: "insert into his_call". There are over 2,000 db objects. I could open each object and perform a text search but, that would take a very long time.

Does anyone have a solution to perform this search ?
 
Do you mean you want to search for that string in all text columns of all tables ? Or do you mean search all code objects like triggers, stored packages etc ? If the latter, you could do:

select * from sys.dba_source
where lower(text) like '%insert into his_call%'
/



Retired (not by choice) Oracle contractor.
 
Yes. This is what I was looking for. Let me give it a try. Many thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top