Jack Njiri
Jack Njiri

Reputation:

MSDTC Service on SQL server 2005

How do I Start the MSDTC service on SQL Server 2005?

Upvotes: 0

Views: 2758

Answers (2)

Valentin V
Valentin V

Reputation: 25759

If you want to get access to MSDTC administration UI, go to Administration=>Component Services=>Local Computer. There you'll be able to manage the MSDTC via GUI.

Upvotes: 0

Guido Domenici
Guido Domenici

Reputation: 5256

Microsoft Distributed Transaction Coordinator is not "on SQL Server" per se - it is a normal Windows Service. To start it, go to the command prompt and enter:

net start msdtc

Upvotes: 3

Related Questions