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 / durga g
DATA step copies records from the input file to the output
file without creating any SAS variables:
data _null_;
infile file-specification-1;
file file-specification-2;
input;
put _infile_;
run;
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
describe about physical data integration? : Sas-di
what is information maps?
What is your favorite all time computer book? Why?
What are symget and symput? : sas-macro
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.
What do the SAS log messages "numeric values have been converted to character" mean?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
what are 5 ways to perform a table lookup in sas? : Sas-administrator
what do the pad and dim functions do? : Sas programming
Which command is used to save logs in the external file?
Explain what Proc glm does?
In sas admin differentiate between roles and capabilities? : sas-grid-administration
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
how can you put a "trace" in your program? : Sas programming
what is star schema? : Sas-di