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
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
How to limit decimal places for the variable using proc means?
Tell me more about the parameters in macro? : sas-macro
what are the scrubbing procedures in sas? : Sas programming
What is Linear Regression?
How do you add a number to a macro variable? : sas-macro
explain the use of % includes a statement in sas? : Sas-administrator
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
Have you used macros? For what purpose you have used? : sas-macro
Name types of category in which SAS Informats are placed?
Describe a time when you were really stuck on a problem and how you solved it?
What are the functions which are used for character handling functions?
how would you create multiple observations from a single observation? : Sas programming
What is connection profile? : sas-grid-administration
What is a method to debug and test your SAS program?