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 / 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 |
Post New Answer View All Answers
What are the special input delimiters used in SAS?
what is the difference between unique key and primary key? : Sas-di
How will you generate test data with no input data?
Name few SAS functions?
what does the run statement do? : Sas programming
What are the default statistics for means procedure?
what is sas and what are the functions? : Sas-administrator
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
What is the difference between reading data from an external file and reading data from an existing data set?
Approximately what date is represented by the SAS date value of 730?
how does sas handle missing values in formats? : Sas programming
Explain data step in SAS
Explain proc sort?
what is program data vector? : Sas-administrator
How do you define proc in sas? : sas-grid-administration