‎2008 Jan 17 12:49 PM
‎2008 Jan 17 1:28 PM
Do you mean
SET UPDATE TASK LOCAL.
This statement affects the execution of the update function modules (V1-posting). Without that statement the update is done asynchronously meaning that at the commit work the main process is ended and the user can continue to work in his session while the update is still running in the update work processes.
In case the user needs to wait until all the V1-update modules are processed you can achieve this synchronous behavior by using the above statement which will return the control to the user only at the point where all the update tasks are processed.
It has the same effect as COMMIT WORK AND WAIT.
Hope that explains it,
Michael
‎2008 Jan 17 1:28 PM
Do you mean
SET UPDATE TASK LOCAL.
This statement affects the execution of the update function modules (V1-posting). Without that statement the update is done asynchronously meaning that at the commit work the main process is ended and the user can continue to work in his session while the update is still running in the update work processes.
In case the user needs to wait until all the V1-update modules are processed you can achieve this synchronous behavior by using the above statement which will return the control to the user only at the point where all the update tasks are processed.
It has the same effect as COMMIT WORK AND WAIT.
Hope that explains it,
Michael