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 / learning sas
FILENAME EXTERNAL1 'PATH';
FILENAME EXTERNAL2 'PATH';
Proc import DATAFILE=EXTERNAL1
OUT=XYZ REPLACE;
GETNAMES=YES;
RUN;
DATA _NULL_;
FILE EXTERNAL2;
SET XYZ;
PUT _ALL_;
RUN;
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
what is the primary data source for the wrs? : Sas-bi
How substr function works in sas?
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
This entry was posted in General. Bookmark the permalink. Post a comment or leave
What is your favorite all time computer book? Why?
Name types of category in which SAS Informats are placed?
What are the different servers in sas? : sas-grid-administration
which date function advances a date, time or datetime value by a given interval? : Sas programming
Mention how to limit decimal places for the variable using proc means?
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
what are sas bi dashboard components? : Sas-bi
What is the difference between order and group variable in proc report?
how to do user inputs and command line arguments in sas?
Explain how merging helps to combine data sets.