PlsqlBeforeProcedure
Specifies the procedure to be invoked before calling the requested procedure. This allows you to put a hook point before the requested procedure is called. This is useful in doing SQL*Traces/SQL Profiles while debugging a problem with the requested procedure. This also comes handy when you want to ensure that a specific call be made before running every procedure.
- Syntax:
- PlsqlBeforeProcedure [string]
- Default:
- [none]
- Example:
- PlsqlBeforeProcedure portal.mypkg.mybeforeproc
Tips for PlsqlBeforeProcedure
In general, this parameter should be omitted
You could use this to start SQL Trace/SQL Profiling
In older versions, this parameter was called before_proc