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

what is the difference between floor and ceil functions in sas? : Sas-administrator

956


what are all the reports you generated in your recent project?

1960


What is the difference between SAS functions and procedures?

915


What is the difference between using drop = data set option in data statement and set statement?

927


How can sas program be validated?

802


what is hash files in sas and why we are using this one in sas?

1970


Hello Friends, am new to this forum and am not good at sas progarmming. please can any one of you send me couple of sample large sample SAS Jobs which can you use 200 MB of data and other sas job upto 25GB of data. am doing a performance testing on our legacy systems and new upgraded system. I would really appreciate if you can do me this favor Thank you Priya

1609


What is maximum number of rows and cols can be handled in SAS?

1110


what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming

857


Name and describe few sas character functions that are used for data cleaning in brief.

898


In sas admin differentiate between roles and capabilities? : sas-grid-administration

787


sas implementing companies in pune implementing clinical projects if anyone knows plz send ans immediately

3370


What is PROC in SAS?

839


What is slibref?

982


what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake

2136