Hi all, I have several SAS datasets I need to convert to XPT files. The files are currently SAS7BDAT files. Example: adae.sas7bdat The files were originally created in Japanese. I using the following code to create the XPT files but not having success. libname insas "~,,,\data"; libname sasxpt "~...\sas xpt"; proc copy in=insas out=sasxpt; select adae; run; The log notes this: NOTE: Copying INSAS.ADAE to SASXPT.ADAE (memtype=DATA). NOTE: Data file INSAS.ADAE.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file SASXPT.ADAE.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. ERROR: Unable to transcode character data, such as a name or label, for the file header of SASXPT.ADAE.DATA. Either the data contains characters that are not representable in the new encoding or truncation occurred during transcoding. ERROR: File SASXPT.ADAE.DATA has not been saved because copy could not be completed. NOTE: Statements not processed because of errors noted above. Any ideas?
... View more