| Date: | Thu, 5 Apr 2007 04:09:20 -0700 |
| Reply-To: | manie <baroux.s@MAC.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | manie <baroux.s@MAC.COM> |
| Organization: | http://groups.google.com |
| Subject: | Special charaters export issues |
|
| Content-Type: | text/plain; charset="iso-8859-1" |
|---|
Hello,
I need to export SAS data in a flat file. this data contains special
characters (french accents / german characters). I can see them
without any problem via SAS.
But when I export the dataset with script below, I loose the special
characters (replaced with strange characters).
DATA _NULL_;
SET EMEAWORK.FRA_EXP_FINAL;
FILE 'j:\emea_data\sb\EXP_FRA_FINAL.dat' dlm = ',';
PUT prs_individual_id f_add1 f_add2 f_add3 f_city f_country
f_postcode;
RUN;
Do you know how I can manage this issue?
THanks
Stephanie
|