Answered by:
msdtc

Question
-
hi all,
what is the use of ms dtc in ms sql clustering...?
Friday, May 17, 2013 7:27 AM
Answers
-
Have a look at this blog
http://blogs.msdn.com/b/sqlblog/archive/2006/10/06/msdtc-and-sql-server-on-a-cluster.aspx
Regards, Ashwin Menon My Blog - http:\\sqllearnings.com
- Marked as answer by Allen Li - MSFT Monday, May 27, 2013 10:21 AM
Friday, May 17, 2013 8:31 AM
All replies
-
Have a look at this blog
http://blogs.msdn.com/b/sqlblog/archive/2006/10/06/msdtc-and-sql-server-on-a-cluster.aspx
Regards, Ashwin Menon My Blog - http:\\sqllearnings.com
- Marked as answer by Allen Li - MSFT Monday, May 27, 2013 10:21 AM
Friday, May 17, 2013 8:31 AM -
Hi,
The Microsoft Distributed Transaction Coordinator service (MSDTC) tracks all parts of the transactions process, even over multiple resource managers on multiple computers. This helps ensure that the transaction is committed, if every part of the transaction succeeds, or is rolled back, if any part of the transaction process fails.
For more information please follow below links.
http://technet.microsoft.com/en-us/library/dd337629(v=ws.10).aspx
For Windows Failover Cluster
Before installing SQL Server on a failover cluster, determine whether the Microsoft Distributed Transaction Coordinator (MSDTC) cluster resource must be created. If you are installing only the Database Engine, the MSDTC cluster resource is not required. If you are installing the Database Engine and SSIS, Workstation Components, or if you will use distributed transactions, you must install MSDTC. Note that MSDTC is not required for Analysis Services-only instances.
On Windows Server 2008 and Windows Server 2008 R2, you can install multiple instances of MSDTC on a single failover cluster. The first instance of MSDTC that is installed will be the cluster default instance of MSDTC. SQL Server will take advantage of an instance of MSDTC installed to the SQL Server local cluster resource group by automatically using the instance of MSDTC. However, individual applications can be mapped to any instance of MSDTC on the cluster.
The following rules are applied for an instance of MSDTC to be chosen by SQL Server:
-
Use MSDTC installed to the local group, else
-
Use the mapped instance of MSDTC, else
-
Use the cluster's default instance of MSDTC, else
-
Use the local machine’s installed instance of MSDTC
Important
If the MSDTC instance that is installed to the local cluster group of SQL Server fails, SQL Server does not automatically attempt to use the default cluster instance or the local machine instance of MSDTC. You would need to completely remove the failed instance of MSDTC from the SQL Server group to use another instance of MSDTC. Likewise, if you create a mapping for SQL Server and the mapped instance of MSDTC fails, your distributed transactions will also fail. If you want SQL Server to use a different instance of MSDTC, you must either add an instance of MSDTC to the local cluster group of the SQL Server or delete the mapping.
Configure Microsoft Distributed Transaction Coordinator
After you install the operating system and configure your cluster, you must configure MSDTC to work in a cluster by using the Cluster Administrator. Failure to cluster MSDTC will not block SQL Server Setup, but SQL Server application functionality may be affected if MSDTC is not properly configured.
More information follow below link
http://msdn.microsoft.com/en-us/library/ms189910.aspx
Regards,
Balwant.
Failure in Life is failure to try... PGDCA-98(South Gujarat University),MCSA (SQL 2012) , MCTS (SQL Server 2005) http://blog.vspatel.co.uk/
Friday, May 17, 2013 9:12 AM -
-
Hello!
In simple words, this a service used when some transaction involve resources that are located in different servers.
Regards,
André CR / Helped? If the answer is yes mark! If the answer is no, wait a little bit because i'll back! Visit my blog! sqlmagu.blogspot.com.br
Friday, May 17, 2013 4:58 PM