How to import the Zip files into SAS? If it is possible in
SAS? If it is posible write the code...

Answer Posted / vinod kumar

We can read the zipped files in to SAS by using the SASZIPAM
option.

filename file1 saszipam 'd:\Myfiles\dumps.zip';

data dset;
infile file1(dumps1.csv) dlm=','; *-dumps1.csv is one of
the file in zipped file;
input email $ name $ address $ city $ zip $;
put _infile_;
run;

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how does sas handle missing values in sort order? : Sas programming

537


What is substr function?

626


Explain what is the use of proc gplot?

706


Explain the use of proc gplot? : sas-grid-administration

556


Hi, If anyone has base SAS certification dumps, please share.

1390






How to read an input file in sas?

659


What Proc glm does?

610


Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks

1802


how does sas handle missing values in functions? : Sas programming

604


What are the prime responsibilities of data integration administrator? : Sas-di

591


Did you used proc test? when?

1577


What is the role of unrestrictive users? : sas-grid-administration

575


Give some examples where proc report’s defaults are same as proc print’s defaults?

645


name some data transformation used in sas di? : Sas-di

548


Explain what Proc glm does?

641