What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / sankar
use INFLE statement
data dsname;
infile 'path of file' <options>;
input var1 var2................varn;
run;
options like dsd dlm missover firstobs obs ..etc
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
For what purpose would you use the RETAIN statement?
name several ways to achieve efficiency in your program? : Sas programming
What is a put statement?
How is character variable converted into numeric variable and vice versa?
What are the data types in sas?
for whom is sas data integration studio designed? : Sas-di
What is the difference between using drop = data set option in data statement and set statement?
what is information maps?
What function CATX syntax does?
How do you control the number of observations and/or variables read or written?
What are the data types does SAS contain?
What are the 3 components in sas programming?
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
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
what is proc Index? and what is proc document?