All I want to do is update a field with the DIRECT CURRENT SYMBOL FORM TWO ⎓
character into my SQL Server 2012 database. Is that too much to ask? Apparently it is.
The answer to this question and this question is the same and did not work for me.
My update script
UPDATE Table
SET Value = N'SUPPLY 9-30Vdc 0.2W ⎓'
WHERE id = '1234'
Aaaaand the relevant table schema:
CREATE TABLE [dbo].[Table]
(
...
...
[Value] [nvarchar] (1000) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
...
...
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
Want more? Here's the results of sp_columns
:
Yes, I prefixed the string with N''. That should work, right? Nope.
Screenshot:
Notice the little box where the unicode character should be. Why, though?