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






SQL>
SQL>
SQL> COLUMN    text    FORMAT    a78
SQL> SELECT    text
  2  FROM      all_source
  3  WHERE     name = UPPER('&name')
  4  AND       type = UPPER('&type')
  5  and       rownum < 2
  6  AND       line BETWEEN &starting_line AND &ending_line;
Enter value for name:
old   3: WHERE     name = UPPER('&name')
new   3: WHERE     name = UPPER('')
Enter value for type: --








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