Oracle SQL Developer – Using ‘All Source Lines’ in ‘Find Database Object’

oracle-sql-developer

What's in 'Find Database Object' the difference between

Search for %pattern% AND

All Source Lines

In which area's does Search for %pattern% search for, if not in All Source Lines …?

Best Answer

I'm going to answer your question based on version 18.2.

Searching source code in an Oracle Database via SQL Developer:

enter image description here

We automatically wildcard your search string - so you can search db object names, like tables named 'EMP' and also look for that string in your database code. We also make sure the case of the text isn't an issue.

Now, what do we consider 'source code?'

  1. All Source Lines: this is the ALL_SOURCE view, in other words, the PL/SQL code you have access to
  2. All Views - the SQL contained in the definition of your View and Materialized Views
  3. All Statements - new for 12cR2 databases, this is the SQL statements collected by PL/Scope via the pl/sql compiler for your pl/sql code
  4. ORDS - the code used to define your RESTful Services

I talk about the search feature here and provide a video demo.