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 are the different types of sas functions?
what is the basic structure sas administrator? : Sas-administrator
What is the good sas programming practices for processing large data sets?
Explain the difference between informat and format with an example.
what other sas products have you used and consider yourself proficient in using? : Sas programming
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
What are the table names in oracle database...?
explain the main difference between the nodup and nodupkey options? : Sas-administrator
What is by-group processing?
describe how to adjust the performance of data integrator? : Sas-di
What are the functions used for character handling?
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
What is the work of tranwrd function?
Give an example where SAS fails to convert character value to numeric value automatically?
how would you determine the number of missing or nonmissing values in computations? : Sas programming