Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 foreign language problem in SQL

Author  Topic 

vijays3
Constraint Violating Yak Guru

354 Posts

Posted - 2013-10-08 : 03:48:47
Removing this post.

vijays3
Constraint Violating Yak Guru

354 Posts

Posted - 2013-10-08 : 04:44:32
[code]
I found the solution .I am posting it because it will others

1. column datatype must be NVARCHAR to load other langauge.
2. While loading such reecords it must be prefixed with N.


insert into tb_TranslatedStringDev(StringID,LanguageID,StringValue)

SELECT 1, 34, N'Some Chinese string '

[/code]

Vijay is here to learn something from you guys.
Go to Top of Page
   

- Advertisement -