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
I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com
what is the use of sas management console? : Sas-di
what type of graphs we will create(for 2+years candidates)?
what is treatment emergent events and treatment emregent adverse event
how could you generate test data with no input data? : Sas programming
What do you code to create a macro? : sas-macro
How do you add a number to a macro variable? : sas-macro
How do you convert basic cube to transaction cube and transaction cube to basic cube?
Mention what are the data types does SAS contain?
How is character variable converted into numeric variable and vice versa?
How can you limit the variables written to output dataset in data step?
How necessary is it to be creative in your work?
Describe crosslist option in tables statement?
What is your favorite all time computer book? Why?
Why double trailing @@ is used in input statement?