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 / sumit
data _null_;
infile 'path';
input;
file 'destination path';
put _infile_;
run;
| Is This Answer Correct ? | 16 Yes | 2 No |
Post New Answer View All Answers
What is the basic syntax style in SAS?
what are the considerations when picking a SAS/STAT procedure?
What does P-value signify about the statistical data?
What is the sas data set? : sas-grid-administration
How would you include common or reuse to be processed along with your statements?
Describe a time when you were really stuck on a problem and how you solved it?
What are the limitations for memory allocation for SAS variables
how are numeric and character missing values represented internally? : Sas programming
What are the functions which are used for character handling functions?
What are the table names in oracle database...?
I have a SCD Type 2 Dimention for Location In which A Sales Office in Having two Surrogate Keys just because of the change in it's Sales Group. SKey SalesGroup Sales Office BeginDate EndDate 280 SG1 SO1 01APR2000 01APR2010 281 SG2 SO1 02APR2010 31MAR2999 Now while loading the Fact, the Lookup ir returning SKey 280 for records before and after 01APR2010. I am not able to give WHERE condition in the Lookup Properties (TranDate between BeginDate and EndDate). Please help.
how does sas handle missing values in formats? : Sas programming
what is the difference between floor and ceil functions in sas? : Sas-administrator
What are the different operating system platforms in which we can use sas? : sas-grid-administration
How to create list output for cross-tabulations in proc freq?