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 is SAS/Access and SAS/Connect?what are the uses?
What is the SAS data set?
At compile time when a SAS data set is read, what items are created?
How would you include common or reuse code to be processed along with your statements?
how to remove the duplicates by proc sql?
What are the difficulties u faced while doing vital signs table or dataset?
How to convert HTML file into SAS dataset?
What are the implications?
Explain the special input delimiters used in sas programming.
What areas of SAS are you most interested in?
What are the default statistics that proc means produce?
What is PROC in SAS?