My client needs to use transactions and DTC - can we use this at MSSQL10.
My client claims that every serious web application needs transactions and he gets error: The transaction manager has disabled its support for remote/network transactions .
Thanks Stephen! Do you know if is it possible to use transactions without DTC? it seems DTC is needed when database and web servers are on different phisical servers.
Most of the time it’s enough to use transactions for certain database operations. You can still include transactions in stored procedures and SQL statements.
I think you can also use the .NET System.Transactions functionality, as long as your transaction encompasses only a single resource, for example a single database.
Shame DTC isn’t supported though.. and I’m somewhat puzzled by the reasoning behind this PCI compliance thing.