Temporarily overriding the active version of a native SQL procedure
If you want a particular call to a native SQL procedure to use a version other than the active version, you can temporarily override the active version. Such an override might be helpful when you are testing a new version of a native SQL procedure.
About this task
Recommendation: If you want
all calls to a native SQL procedure to use a particular version, do
not temporarily override the active version in every call. Instead,
make that version the active version. Otherwise, performance might
be slower.
Procedure
To temporarily override the active version of a native SQL procedure, specify the following statements in your program:
- The SET CURRENT ROUTINE VERSION statement with the name of the version of the procedure that you want to use. If the specified version does not exist, the active version is used.
- The CALL statement with the name of the procedure.
Example
SET CURRENT ROUTINE VERSION = V1;
SET procname = 'UPDATE_BALANCE';
CALL :procname USING DESCRIPTOR :x;