How to wrap PL or SQL source code in Oracle?

How can I use a custom migration function or a deployed method in Oracle? Because the default migration code can be deployed.

+4
source share
1 answer

Use the wrapped procedure in the same way as you use the expanded procedure. Call it from SQL or PL / SQL. Wrapping does not affect the call to the execution time of the stored procedure. The procedure is still in ALL_OBJECTS, and its parameters are still in ALL_ARGUMENTS.

-1
source

Source: https://habr.com/ru/post/1670904/


All Articles