What SAS statements would you code to read an external raw
data file to a DATA step?
Answer Posted / mohan reddy
INFILE AND INPUT STATEMENTS
EX;
DATA EMP;
INFILE 'E:\ABC\EMPLOYEE.TXT' MISSOVER;
INPUT VAR1 VAR 2....VARN;
RUN;
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
what are the benefits of data integration? : Sas-di
what is snowflake schema? : Sas-di
how can you import .csv file in to sas? : Sas programming
What is program data vector (pdv) and what are its functions?
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
What are the different operating system platforms in which we can use sas? : sas-grid-administration
How do dates work in sas?
Differentiate input and infile.
Name and describe few sas character functions that are used for data cleaning in brief.
What are pdv and it functions?
How can you limit the variables written to output dataset in data step?
How is character variable converted into numeric variable and vice versa?
How do you connect the desktop application to metadata server? : sas-grid-administration
What is the difference between %local and %global? : sas-macro
Do you need to know if there are any missing values?