Error:
User, group, or role 'xxx' already exists in the current database. (.Net SqlClient Data Provider)
Explanation:
This error happens when you try to add user mapping to the server logins using username which already exists in the database to be assigned.
In my case, the user exists in both server logins and database logins,
but the user mapping...
Tuesday, November 5, 2013
Current Transaction Cannot be Committed
Error:
The current transaction cannot be committed and cannot support operations that write to the log file. Roll back the transaction.
This error occurs when you try to perform other operations when any transaction fails in try catch section, soon after it goes to catch section.
Solution:
You have to ROLLBACK first on the catch section before doing...
Directory Lookup Failed on SQL Server
When executing script on SQL server, this error occurs:
Directory lookup
for the file <filepath> failed with the operating system error 2(The system cannot find the file specified.)
Directory lookup for the file <filepath> failed with the operating system error 3(The system cannot find the path specified.)
Solution:
Check...
You may be intersted in
Related Posts
Updating Table Containing Xml Column via LinkedServer
If you are trying to update a table containing XML column via Linked Server in SQL Server, and you are not able to, you are not alone. There...