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
What is the maximum length of the macro variable? : sas-macro
What are the functions used for character handling?
Difference between sum function and using “+” operator?
what versions of sas have you used (on which platforms)? : Sas programming
which date function advances a date, time or datetime value by a given interval? : Sas programming
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
What is maximum storage capability of SAS?
What is PDV?
: and & modifiers.
what is treatment emergent events and treatment emregent adverse event
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
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 is sas and what are the functions? : Sas-administrator
What Proc glm does?
Describe the ways in which you can create macro variables? : sas-macro