Viewing 5 posts - 1 through 5 (of 5 total)
Thanks for replies to SQLBuddy and Sanjay.
I followed steps by Sanjay and it worked perfectly as mentioned. I can now see chinese and Korean data in columns.
Thanks again.
September 28, 2010 at 8:54 am
Any one here ?
I will rephrase my question again.
I want to move data from Oracle using DTS package to SQL Server.
Two column has chinese / korean data and after data...
September 24, 2010 at 8:23 am
sqlbuddy123 (9/23/2010)
September 23, 2010 at 2:53 pm
The code I tested for unicode insert in SQL Server is
create table yourtable (yourid int,yourvalue nvarchar(200))
go
insert into yourtable (yourid, yourvalue) values (1,'user1')
insert into yourtable (yourid,yourvalue) values (2,'user2')
insert into yourtable (yourid,yourvalue)...
September 23, 2010 at 9:16 am
Viewing 5 posts - 1 through 5 (of 5 total)