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

Explain data step in SAS

627


What is maximum storage capability of SAS?

904


I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com

2261


How is character variable converted into numeric variable and vice versa?

591


Explain proc sort?

662






If you use a symput in a data step, when and where can you use the macro variable? : sas-macro

603


Explain the main difference between the sas procedures and functions? : Sas-administrator

533


Describe the function and untility of the most difficult SAS macro that you have written.

1718


Which are the statements whose placement in the data step is critical?

758


How do you add a number to a macro variable? : sas-macro

542


How to limit decimal places for variable using proc means?

587


what do you mean by data staging area? : Sas-di

597


what is the difference between nodup and nodupkey options? : Sas programming

615


Which command is used to perform sorting in sas program?

593


what are sas bi dashboard components? : Sas-bi

653