if reading an external file to produce an external file, what
is the shortcut to write that record without coding every
single variable on the record
Answer Posted / pratik
proc import
datafile='D:\Dropbox\SAS\testfile1.txt'
out=data_imported dbms=dlm replace;
getnames=NO;
run;
proc export
data=data_imported
outfile='D:\Dropbox\SAS\testfile2.txt' replace;
run;
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
how to do user inputs and command line arguments in sas?
what is transformation in sas data integration? : Sas-di
where are dashboard components are created and maintained? : Sas-bi
Differences between where and if statement?
How to convert a numeric variable to a character variable?
what does the run statement do? : Sas programming
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
What versions of SAS have you used (on which platforms)?
How would you identify a macro variable?
What is the maximum and minimum length of macro variable
What are types of transport files?
How do you delete duplicate observations in sas?
Explain translate function?
Explain substr function?
Intern stastical programmer written test