Query all_source for certain string : all_source « System Tables Data Dictionary « Oracle PL/SQL Tutorial






SQL>
SQL>
SQL> COLUMN    text    FORMAT    a30 word_wrapped
SQL> SELECT    name, type, text
  2  FROM      all_source
  3  WHERE     UPPER(text) LIKE '%FREE BLOCKS%'
  4  and       rownum < 2;

NAME                   TYPE         TEXT
---------------------- ------------ ------------------------------
DBMS_SPACE             PACKAGE      --  Returns information about
                                    free blocks in an object
                                    (table, index,


SQL>








30.13.all_source
30.13.1.Query all_source for certain string
30.13.2.Query all_source
30.13.3.Query all_source for all packages
30.13.4.Query all_source table for all package bodies