Click here to Skip to main content
15,881,424 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hi All,


I try to export values from oracle DB to SQL server DB using SSIS Package.In the oracle DB contains some Chinese characters that Chinese characters not loading properly .
It looks like different from oracle .So can u please any one help
Posted
Comments
Sergey Alexandrovich Kryukov 6-Apr-15 1:36am    
There is such problems as using Chinese characters in this kind of software. It means that you screwed up something badly. You did not provide any useful information to find out what the problem is. You did not even give us any example of mangled text.
—SA
Arul R Ece 8-Apr-15 0:46am    
In Oracle Chinese character like " 税务登记证" .but when i load into the SQL that character is showing like "靠靠" this .
Can you please do needful.

1 solution

Please see my comment to the question. We cannot solve this problem based on your information. However, I can suggests some items you could check up.


  • You could use some encoding not based on Unicode for your Chinese texts, something obsolete.
  • You could use non-Unicode data types in SQL.
    Please see: https://technet.microsoft.com/en-us/library/ms191200%28v=sql.105%29.aspx.
  • You could trans-code Unicode data to some other encoding, such as ASCII; even though presentation encoding could be based on Unicode, Unicode characters could be replaced with '?' for code points not supported by that non-Unicode encoding.
    (Anyway, you did not explain where the texts were mangled and in what way.)
  • You could choose a font no supporting Chinese subset of Unicode code points.
  • It could be some other problem, presumably based on lack of understanding of how Unicode works and how it is supported in one or another technology.
    Please see:
    http://en.wikipedia.org/wiki/Unicode,
    http://www.unicode.org.


—SA
 
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