Here's the SAS documentation regarding session encoding and how to change it: http://support.sas.com/kb/51/586.html Alternativley, you should be able to just add a parameter to the sasv9_local.cfg file in <sashome>/SASFoundation/9.4. You would add an option in this file. It should look something like this: -ENCODING utf-8 In my environment, we originally configured as utf-8, but then I realized that alot of people that would be migrating from old servers to the new servers had all of their datasets encoded with latin1. So we added "-ENDODING utf-8" to the sasv9_local.cfg file.
... View more