Hi I created the following table
CREATE TABLE [myTest] (
[test] [nvarchar] (1000) COLLATE Traditional_Spanish_BIN NULL
) ON [PRIMARY]
GO
try to insert chinese using
insert into myTest(test) values (N'?????? ???')
the data in query analyzer display boxes instead of the language like it does here. What am I doing wrong.
Howard
CREATE TABLE [myTest] (
[test] [nvarchar] (1000) COLLATE Traditional_Spanish_BIN NULL
) ON [PRIMARY]
GO
try to insert chinese using
insert into myTest(test) values (N'?????? ???')
the data in query analyzer display boxes instead of the language like it does here. What am I doing wrong.
Howard