Viewing 4 posts - 1 through 4 (of 4 total)
THANKS! That works. The character is successfully inserted. Now, I have to see what I have to do to the Stored Procedure to make that work. ...
April 17, 2008 at 3:33 pm
When I use:
update order_header set shipname1 = N '??'
where orderno = '13153461'
I get the following error message:
Server: Msg 170, Level 15, State 1, Line 1
Line 1: Incorrect syntax near '??'.
April 17, 2008 at 2:57 pm
update order_header set shipname1 ='??'
where orderno = '13153461'
April 17, 2008 at 2:36 pm
David
Yes, the Data Type for the fields in question has been changed to nvarchar. I have also been able to successfully paste the Japanese characters into the DB from...
April 17, 2008 at 1:51 pm
Viewing 4 posts - 1 through 4 (of 4 total)