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
If you could design your ideal job, what would it look like?
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
What are the different versions of sas that you have used until now? : sas-grid-administration
what is SAS OPTIMIZATION?
how many display types available in sas bi dashboard? : Sas-bi
Explain input and put function?
What is the role of unrestrictive users? : sas-grid-administration
Where do you use proc means over proc freq?
Differences between where and if statement?
How do you connect the desktop application to metadata server? : sas-grid-administration
What are common programming errors committed in sas
what are the categories that sas informats are used to the place the data? : Sas-administrator
what is operational data and operational system? : Sas-di
Explain what is SAS informats?
What is the use of stop statement?