Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Local database update

Former Member
0 Likes
361

What is local database update mode?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
329

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

1 REPLY 1
Read only

Former Member
0 Likes
330

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