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
Describe the function and untility of the most difficult SAS macro that you have written.
what is metadata? : Sas-bi
Describe the ways in which you can create macro variables? : sas-macro
Explain the difference between using drop = data set option in set and data statement?
How would you invoke a macro? : sas-macro
explain the key concept of sas? : Sas-administrator
how to generate the test data in sas without input data? : Sas-administrator
What Proc glm does?
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
for what purpose would you use the retain statement? : Sas programming
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
how to debug and test the sas program? : Sas-administrator
what is sas business intelligence? : Sas-bi
What is a method to debug and test your SAS program?
what versions of sas have you used (on which platforms)? : Sas programming