Click here to Skip to main content
15,881,709 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
i need to store unicode data in a file format which could be later on imported in the database ?

i want to copy my table data(containing unicode) in a file and that file will be imported later to the database
Posted
Updated 18-Jan-13 1:03am
v2

using the export wizard we can write the data on the flat file and can again import the file in any other database table having the same structure using import wizard
 
Share this answer
 
v2
SELECT * INTO XLImport1 FROM EXCELLINK...[Customers$]
or
SQL
You can also execute the query against the source in a passthrough manner by using OPENQUERY as follows:
SELECT * INTO XLImport2 FROM OPENQUERY(EXCELLINK,
    'SELECT * FROM [Customers$]')
 
Share this answer
 

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