Conversion failed when converting from a character string to uniqueidentifier.

Error Message:
Msg 8169, Level 16, State 2, Line 1
Conversion failed when converting from a character string to uniqueidentifier.

Severity level:
16.

Description:
This error message appears when you try to convert an invalid character string to uniqueidentifier.

Consequences:
The T-SQL statement can be parsed, but causes the error at runtime.

Resolution:
Error of the Severity level 16 are generated by the user and can be fixed by the SQL Server user. The statement cannot be run this way. Only valid character strings can be converted to uniqueidentifier.

Versions:
All versions of SQL Server.

Example(s):
SELECT CAST(‘1’ AS uniqueidentifier)

Remarks:
In the above example we try to convert the character string ‘1’ to uniqueidentifier. This raises the error.

]]>

Leave a comment

Your email address will not be published.