
Find the Source Code of a Function or Procedure in Oracle SQL
If you need to find the source code for a function or procedure in the database, it’s easy to do in Oracle. You can query the all_source view to get a list of all of the source code. SELECT textFROM all_sourceWHERE name = your_function_NameORDER BY line; Replace your_function_name with the