In the flow of DATA step processing, what is the first
action in a typical DATA Step?
Answers were Sorted based on User's Feedback
Answer / latha reddy
1)Compilation Phase
When you submit a DATA step,it reads the input statements
it creates an input buffer and brings the variables and
observations.it is a logical memory area.
and pdv brings the observations at a time from input buffer
and checks the errors.
PDV contains 2 automatic variables _n_ & _error_ ,these
checks the erros in observations.
_n_ : indicates the no of obs.
_error_: 1 if error occured
0 if no error
After that it assigns the datavalues to appropriate
variable and build a sas dataset.
2)Execution Phase
| Is This Answer Correct ? | 12 Yes | 2 No |
Answer / kiran
Compilation phase happens first in data step processing.
during compilation phase, each statement is scanned for
syntax errors.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ravi
When you submit a DATA step, SAS processes the DATA step and
then creates a new SAS data set
Compilation Phase
Execution Phase
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / vengala reddy
in pdv...
compilation,run phase,execution phase
| Is This Answer Correct ? | 2 Yes | 4 No |
what has been your most common programming mistake? : Sas programming
what is factor analysis? : Sas-administrator
How do you write a test plan?
Have you ever linked SAS code? If so, describe the link and any required statements used to either process the code or the step itself.
Are you familiar with special input delimiters How are they used?
HOW MANY WAYS YOU CAN RETRIEVE THE DATA FROM ORACLE TABLES? WHAT IS ORACLE CLINICAL? HOW IT IS USEFUL?
3 Answers Accenture, Novartis,
Name few SAS functions?
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
Tell me more about the parameters in macro? : sas-macro
what is the purpose of _error_? : Sas programming
how to assign a macro value to a variable?
what is SAS OPTIMIZATION?