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
Explain translate function?
Tell me more about the parameters in macro? : sas-macro
what is the use of proc contents and proc print in sas? : Sas-administrator
what is study design in while working with SAS? what are screening variables in SAS?
what is the basic structure sas administrator? : Sas-administrator
What are the uses of sas?
What is the good sas programming practices for processing large data sets?
What are the data types in sas?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
How to specify variables to be processed by the freq procedure?
what is proc Index? and what is proc document?
for what purpose would you use the retain statement? : Sas programming
for whom is sas data integration studio designed? : Sas-di
How would you invoke a macro? : sas-macro
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming