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
Describe a time when you were really stuck on a problem and how you solved it?
In ARRAY processing, what does the DIM function do?
What is factor analysis?
How to create an external dataset with sas code?
What is the use of the %include statement?
Explain the use of proc print and proc contents?
what do you mean by data staging area? : Sas-di
What is the difference between proportion and average?
What are the implications?
how will you locate the sas platform applications? : Sas-bi
how do you test for missing values? : Sas programming
how does sas handle missing values in a merge? : Sas programming
what are the component of range? : Sas-bi
Mention how to limit decimal places for the variable using proc means?
What is the role of administrative users? : sas-grid-administration