LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (April 2007, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments:   To: sas-l@uga.edu
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


Back to: Top of message | Previous page | Main SAS-L page