I am in need of writing a process that needs to update 2 identical tables located in 2 different databases on servers that are geographically separated.
We can't add one of the servers as a linked server due to some security considerations.
The requirement is also that if either of the process fails, both transactions should be rolled back. It's all or nothing. After reading the documentation on MSDN regarding TransactionScope it appears as though this class will take care of business for you but there are some fuzzy areas on the documentation that I am hoping someone with experience using this approach can clarify for me:
- The documentation says that you can connect to 2 different databases or even a 3rd party RDBMS but it doesn't specify whether the database servers must be "linked"
- Assuming they don't need to be linked, can you explain, roughly, how does the TransactionScope handles exceptions and manages to roll back when an error occurs?
