Date: Fri, 22 Aug 2008 07:11:45 -0700
Reply-To: Bibo <batawfic@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Bibo <batawfic@GMAIL.COM>
Organization: http://groups.google.com
Subject: File is full and may be damaged
Content-Type: text/plain; charset=ISO-8859-1
I have very simple program
data mywork.big;
set mylib.res_turn_tm;
do i =1 to 6;
output;
end;
run;
that generate big dataset (~2GB) when I run this program through EG it
work fine, but when I do that through UNIX command line it gives me an
error
ERROR: Write to MYWORK.BIG.DATA failed. File is full and may be
damaged.
The file system that I assign my library to allow 1.5TeraByte and is
almost empty, the unix command I use is
/sas/config/Lev1/SASMain/sas.sh -sysin $mypath/bigDS.sas -errorabend -
noterminal -logparm "rollover=session" -log $mypath/
bigDS.sas_#Y.#m.#d_#H.#M.#s.log -print $mypath
What option do the EG add and I do not to avoide that error.
Any help is very appreciated