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
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;
|