What statement do you code to write the record to the file?
Answers were Sorted based on User's Feedback
Answer / g.jyotshna
file 'path';
put _all_;
run;
this is for all variables to write into the file.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / jothi sankar
FILE '<location-of-file-to-be-written>';
and
PUT var1 var2 var3 .... varn;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / cindy
data _Null_;
set ;
file "c:\location of file to be written.file format eg
(txt)";
put _all_; or var1, var2;
| Is This Answer Correct ? | 0 Yes | 0 No |
What statement do you code to tell SAS that it is to write to an external file? What statement do you code to write the record to the file?
what is the difference between infile and input? : Sas-administrator
how does sas handle missing values in formats? : Sas programming
What is the order of application for output data set options, input data set options and SAS statements?
What is your favorite all time computer book? Why?
How do handle working under pressure?
In the SAS Data step what is the difference between the subsetting done by Where and subsetting done by If?
Name statements that are execution only.
What are the difficulties u faced while doing vital signs table or dataset?
What are MIs reports? what is the use of MIS reports and How can u generate the MIS reports in SAS? If any body know explain with the eg.
2 Answers ABC, ASD Lab, CitiGroup,
How would you delete duplicate observations?
What are the data types does SAS contain?