Qus:    What is difference between local, xa and no transactions?
Dec 15, 2020 15:50 webMethods 1 Answers Views: 1227 KRISHNA SWAROOP
Prev Next
Answers (1)
ALLINO Dec 16, 2020 18:49
Answer:   Local transaction - means in a single transaction we can do multiple operations on a single database. To be clearer all these multiple operations use the same Adapter connection explicit commit required.
NO Transaction - Auto commit all transactions.
XA transaction - means in a single transaction we can do multiple operations on different databases. To be clearer all these multiple operations use different Adapter connection. Generally used for distributed database.
Use No transaction for select and local transaction for any DML (insert, delete, update) operations to handle the transaction boundary (via start, commit and rollback).

Post Your Answer
Guest User

Not sure what solution is right for you?

Choose the right one for you.
Get the help of the experts and find a solution that best suits your needs.


Let`s Connect