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 (July 2009, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 29 Jul 2009 08:07:56 -0700
Reply-To:     data _null_ <datanull@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         data _null_ <datanull@GMAIL.COM>
Organization: http://groups.google.com
Subject:      Re: SASware Ballot - Change LRECL
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset=ISO-8859-1

On Jul 29, 9:30 am, My <my0...@gmail.com> wrote: > How does one add an item to the SASware Ballot? A collegue of mine > wants an lrecl parameter to be added to proc export for csv so he can > change to lrecl to the max of 1048576 from the default 32767. In the > mean time, if anyone has a solution for his needs, it would be greatly > appreciated. > > Thanks. > Myra

Use a FILEREF for the OUTFILE parameter...

filename FT42F001 'TESTLRECL.CSV' lrecl=1048576; proc export outfile=FT42F001 dbms=csv data=sashelp.class; run;


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