Click here to Skip to main content
15,890,506 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how can i save unicode data in a file that the data should not loss when we import or export the data please answer asap
Posted

1 solution

Have u used "NVARCHAR" as a datatype???
using Nvarchar u can insert as u can see int he below example-

SQL
create table unicodeinsert (value nvarchar(max))
insert into unicodeinsert values (N'♪リンゴ可愛いや可愛いやリンゴ')
insert into unicodeinsert values ('♪リンゴ可愛いや可愛いやリンゴ')
select * from unicodeinsert




Please refer this leniently..
http://www.mssqltips.com/sqlservertip/1393/import-excel-unicode-data-with-sql-server-integration-services/[^]

Hope it helps.
 
Share this answer
 
v3
Comments
Kapilkp 18-Jan-13 5:09am    
my project manager asked me to save the unicode data in a file format and that file will be imported later on how to do this i dont understand this ?
The Doer 19-Jan-13 10:58am    
Store your data in excel file and import the file to you database table with the column datatypes as mentioned above, watch this youtube video for importing from excel to sql.
http://www.youtube.com/watch?v=Z1vqhYlwcyA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900