This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
SQL Server storing for each sql_variant text value own collation, so I was trying for test purposes to store strings from german to french into sql_variant. CREATE TABLE [dbo].[VarCollation] ( [uid] [INT] IDENTITY (1, 1) NOT NULL, [comment] NVARCHAR(100), [variant_ger] [sql_variant] NULL, [variant_rus] [sql_variant] NULL, [variant_jap] [sql_variant] NULL, [variant_ser] [sql_variant] [...] read more