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
how will you locate the sas platform applications? : Sas-bi
Give some examples where proc report’s defaults are same as proc print’s defaults?
How do you control the number of observations and/or variables read or written?
How do you define proc in sas? : sas-grid-administration
What is maximum number of rows and cols can be handled in SAS?
Are you sensitive to code walk-throughs peer review or QC review?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
which features do you use to check the data validations and errors? : Sas-administrator
Give an example where SAS fails to convert character value to numeric value automatically?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
What do you know about sas and what we do? : sas-grid-administration
How would you define the end of a macro? : sas-macro
What are the features of base sas system?
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
Mention what is the difference between nodupkey and nodup options?