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
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
How do you debug and test your SAS programs?
what is the Population you used in your project, is it ITT or PP?
How do you test for missing values?
What is proc sort?
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
Explain data_null_?
What are the difference between ceil and floor functions in sas?
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
how does sas handle missing values in a merge? : Sas programming
Describe the function and untility of the most difficult SAS macro that you have written.
Which date function advances a date, time or datetime value by a given interval?
how sas deals with business intelligence? : Sas-bi
for report generation which one you used proc report or data_null_?