Question : Transaction over multiple database servers

Hello Experts,

I have a web application that needs to insert records into tables on seperate database servers.  So I need a mechanism to roll them back if something fails.  A SQLTransaction doesn't seem to be able to handle different servers within the same transaction.

What's the best way to do this?  Sample code would be appreciated.
Note: I'd prefer a method that doesn't use TransactionScope, as I've wasted a lot of time failing to get that working.

Thanks,
Maurice

Answer : Transaction over multiple database servers

you missed a leading $ sign:
$('<p> appendTo  </p>').appendTo("#tabs-1");

Also, execute it upon page load, not while the page is still loading:
1:
2:
3:
4:
5:
6:
7:
<script>
    $(document).ready(function() {
      
	    $('<p> appendTo  </p>').appendTo("#tabs-1");
	    $("#tabs").tabs();
    });
  </script>
Random Solutions  
 
programming4us programming4us