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
What does PROC print, and PROC contents do?
what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?
Differentiate between ceil and floor functions.
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
How can you limit the variables written to output dataset in data step?
how the sas basic syntax style described? : Sas-administrator
Explain what is SAS informats?
how would you create multiple observations from a single observation? : Sas programming
how to debug and test the sas program? : Sas-administrator
AE datasets names? how many types?
Explain the purpose of retain statement.
What are the special input delimiters used in SAS?
What is data _null_?
What is the differnce between SDTM 3.1.2 to 3.1.1 version