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

Which function is used to count the number of intervals between two sas dates?

567


Which command is used to perform sorting in sas program?

595


please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??

1661


Difference between informat and format?

638


what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming

544






what are the scrubbing procedures in sas? : Sas programming

827


what is program data vector? : Sas-administrator

612


what other sas products have you used and consider yourself proficient in using? : Sas programming

682


what are the benefits of data integration? : Sas-di

537


how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5

1654


what is function of retain statment

1522


Tell e how how dealt with..

1766


For what purposes have you used sas macros? : sas-macro

537


What is data _null_?

693


how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming

598