Monday, January 28, 2013

Insert/Update Unicode text in Sql-Server

Insert/Update Unicode text in Sql-Server


create table unicodeText
(
   text nvarchar(max)
);

go

insert into unicodeText values('हम आपके हैं कौन')
insert into unicodeText values(N'हम आपके हैं कौन')
insert into unicodeText values(N'హం ఆప్‌కే హైన్ కౌన్')
insert into unicodetext values(N' வேண்டும் என மாணவியின் தந்தை')
insert into unicodetext values(N'ಮೋದಿ ಪರ ಸಿನ್ಹಾ ಬ್ಯಾಟಿಂಗ್')

go

Same thing for Update operation
Here is an example

Update unicodetext set  text=N'ಮೋದಿ ಪರ' where text=N'ಮೋದಿ ಪರ ಸಿನ್ಹಾ ಬ್ಯಾಟಿಂಗ್'

RESULT

?? ???? ??? ???
हम आपके हैं कौन
हम आपके हैं कौन
హం ఆప్‌కే హైన్ కౌన్
 வேண்டும் என மாணவியின் தந்தை
ಮೋದಿ ಪರ ಸಿನ್ಹಾ ಬ್ಯಾಟಿಂಗ್



Tags: Unicode text in SQL-Server, Insert unicode Text,Update Uincode text, codepage,Unicodes in SQL-Server

No comments:

Post a Comment