From: SAS User on
Hello:
I have a code like this:
....
filename FILE pipe "zcat &TEMP./FILE.Z";
*construction of the table;
data FILE_database;
infile FILE lrecl=20000;
input
%include "&TEMP./FILE.dessign";
;
....
In the log:

NOTE: The infile FILE is:
Pipe command="zcat /data/bases/classic/FILE.Z"

NOTE: Invalid data for VAR1 in line 1 11-20.
NOTE: LOST CARD.
NOTE: Invalid data errors for file FILE occurred outside the printed range.
NOTE: Increase available buffer lines with the INFILE n= option.
vara= varb= varc= vard= vare= varf= varg=/data/b var1=.
varh=ssic/FILE.Z: not in varh=com

....

NOTE: 1 record was read from the infile FILE.
The minimum record length was 55.
The maximum record length was 55.
NOTE: SAS went to a new line when INPUT statement reached past the end of a
line.
NOTE: The data set WORK.FILE_database has 0 observations and 168 variables.
NOTE: DATA statement used (Total process time):
real time 0.12 seconds
cpu time 0.10 seconds

I don't know how to solve this problem.
All the files are ok and worked before. (with the same code)

Thanks,
Ed.