March 14, 2017

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

Accessing and Managing Third-Party Libraries

The Cloud, micro-services and distributed systems are all the rage these days. But, in the end, each service and software component is implemented in some programming language. In the olden days, most software was custom made and very little was shared beyond built-in operating system libraries and the standard library