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


Please Help Members By Posting Answers For Below Questions

Describe crosslist option in tables statement?

943


What is slibref?

963


Mention what is the difference between nodupkey and nodup options?

794


Mention what is PROC in SAS?

824


how will you locate the sas platform applications? : Sas-bi

800


What are the functions which are used for character handling functions?

827


How to test the debugging in sas?

865


explain the proc in sas? : Sas-administrator

834


What is SAS?

809


What are the ways to do a “table lookup” in sas?

785


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

1376


What was the last computer book you purchased? Why?

2092


what is the use of sas management console? : Sas-di

817


Mention the category in which sas informats are placed?

805


Explain why double trailing @@ is used in input statement?

803