I am importing data from a MySQL Database into a Microsoft SQL Server Database (SQL_Latin1_General_CP1_CI_AS). I use a linkedserver connection based on OBDC in combination with an Openquery statement.
I use the following MS SQL Statement:
SELECT street_address FROM openquery(MYLINKEDSERVER,'SELECT street_address FROM customers')
Some of the addresses contain Chinese characters, when using openquery these are imported as question marks, example result:
??? ??? 74 ?????501?
I tried converting using latin1 - no luck;
SELECT * FROM openquery(MYLINKEDSERVER,'SELECT convert(street_address using latin1) FROM customers')
Any ideas how to import the Chinese characters into MS SQL?