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 crosslist option in tables statement?
What is slibref?
Mention what is the difference between nodupkey and nodup options?
Mention what is PROC in SAS?
how will you locate the sas platform applications? : Sas-bi
What are the functions which are used for character handling functions?
How to test the debugging in sas?
explain the proc in sas? : Sas-administrator
What is SAS?
What are the ways to do a “table lookup” in sas?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
What was the last computer book you purchased? Why?
what is the use of sas management console? : Sas-di
Mention the category in which sas informats are placed?
Explain why double trailing @@ is used in input statement?