Helpful bits of SQL, C#, ASP.NET and related articles that we feel may be useful to the community at large. Enjoy!
Thursday, March 8, 2012
Execution ' GUID ' not found during SSRS
Thursday, November 17, 2011
Script to delete everything in all tables in database.
select
'Delete from ' + convert(varchar(max),name)
from sys.tables
Wednesday, November 16, 2011
Great Site for SSRS Inormation
Wednesday, September 21, 2011
Security 101 - Seven Ways You Give Thieves Dibs On Your Database
Tuesday, September 20, 2011
How to strip spaces.
Thursday, September 1, 2011
Free Stanford Introduction class on Databases
Wednesday, August 24, 2011
OLE DB provider "SQLNCLI10" for linked server " " returned message "The partner transaction manager has disabled its support for remote/network transactions."
As the error mentioned above this is a distributed transaction error.
1st I verified that the "Distributed Transaction Coordinator" service was started, which it was but still got the error. I then verified in the properties of the service and made sure that all the security information was checked to allow inbound and outbound communication, still had error.
What ended up happening was my IT team cloned the servers which caused these issue.
Solution:
The cloned servers copied the same DTC names to the linked servers. To fix the issue you need to uninstall and reinstall DTC.
Ran the following command prompt commands:
Net stop medic
Msdtc –uninstall
Msdtc –install
Net start medic
The key now which is not in any other article that I have found is to:
Restart SQL Server