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
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / sas developer
DATA _NULL_;
INFILE 'C:FILESINPUT.TXT' MISSOVER TRUNCOVER;
INPUT BLOCK $100.; /* This is length of the record. Change to suit your file*/
FILE 'C:FILESOUTPUT.TXT';
PUT BLOCK;
RUN;
| Is This Answer Correct ? | 1 Yes | 0 No |
How to select the observations randomly from a SAS dataset
Do you know the features of sas?
what is conditional processing?
What do the put and input function do?
Explain what Proc glm does?
explain the key concept of sas? : Sas-administrator
Explain substr function?
What does the trace option do?
how to intersect the tables by using PROC MIXED?
What is the difference between SAS functions and procedures?
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
what is the formula to measure Baseline