Hello all, I am new to the community so may not be very clear. I have a sas data file that is zipped in unix environment like data.sas7bdat.gz, which is a huge file. I want to directly read this file into SAS EG as a dataset. I researched online and tried using PIPE and ZIP in FILENAME, but both don't work. PIPE would show all special characters for these fields. ZIP shown ERROR. Can you guys help me with this? FILENAME in PIPE "gunzip -c /unixserver/data.sas7bdat.gz" LRECL=80 ; DATA test; INFILE in obs=20; INPUT a 8 b $ 1-46 c $ 6; RUN;
... View more