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 / prakash hullathi
DATA step copies records from the input file to the output
file without creating any SAS variables:
data _null_;
/*To read the external taw data file*/
infile 'file-specification-1';
input var1 var2 $ var3;
/*To write the external raw data file*/
file 'file-specification-2';
put var1 var2 var3;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Do you need to know if there are any missing values?
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
what is sas metadata repository? : Sas-bi
How we can create SAS USER DEFINED CODE?
What is the use of divide function?
Describe what are the different levels of administrative users in sas? : sas-grid-administration
What are the table names in oracle database...?
Explain the purpose of retain statement.
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
How can I remove header from output data set?
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
how to debug and test the sas program? : Sas-administrator
explain what is data set in sas? : Sas-administrator
What is maximum storage capability of SAS?
Explain data_null_?