Morning! I have transcoding problem. A CSV(contain English and Chinese character) to be imported to SAS format. 1. workable code data &filename ; ; infile "&filepath" delimiter = ',' ENCODING="UTF-8" MISSOVER DSD lrecl=32767 firstobs=2 ; 2.failure code libname dw "..." Inencoding=any; data dw.&filename ; ; infile "&filepath" delimiter = ',' ENCODING="UTF-8" MISSOVER DSD lrecl=32767 firstobs=2 ; 3. error log ERROR: Some character data was lost during transcoding in the dataset DW.TRANSACTIONS_HIST_TABLE_20200325. Either the data contains characters that are not representable in the new encoding or truncation occurred during transcoding. As you can see, if import to work, code runs OK without error;(English/number/Chinese are imported correctly) while import to libname DW, code runs with error. (English/number are imported correctly, Chinese character not imported) SAS 9.3/EG 5.1 used. Chinese language supported. Can anyone give a solution? Thanks and Regards, Dawn
... View more