InterviewSolution
| 1. |
What Is The Difference Between A Local-tx-datasource And A Xa-datasource? Can You Use Transactions In Both? |
|
Answer» A local-tx-datasource identifies a data source that uses transactions, even distributed TRANS actions within the local application SERVER, but doesnt use distributed transactions among MULTIPLE application servers. An xa-datasource on the other hand identifies a data source that uses distributed TRANSACTION among multiple application servers. A local-tx-datasource identifies a data source that uses transactions, even distributed trans actions within the local application server, but doesnt use distributed transactions among multiple application servers. An xa-datasource on the other hand identifies a data source that uses distributed transaction among multiple application servers. |
|