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 / suresh
First it creates an input buffer and PDV.
After that it initialises all variables to missing
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vijay
first step is comilation. during compilation it will check
for syntax errors
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ganesh kumar
Fisrt action of the flowing is intially it checks the
syntax errors and later on it compiles and does three
things during the compilition process.
first it creates Input Buffer, PDV,Discriptive portion of
the sas Data set.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ganesh
First step of data step intially it check for compalition
errors and once it is through then input buffer is created
it is the temporary storage memory and pdv is the area of
memory where sas buits a dataset,one obeservation at a time
and after that it creates a discriptive portion.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / poojavaibhav
it compiles...
during compilation it check syntax errors,
convert code into machine language...
create input buffer
create PDV(in which _n_ and error created)
write descriptor portion of data step..
we can see it by using proc content;
thanks;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / xxx
Input stack/input buffer- compalir- PDV - execution.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dupe
Compilation:
Turs code to machine code
Checks for syntax errors
Creates an area of memory called the input buffer(if
reading from a raw data file)
Creates an area of memory called the PDV
Creates the descripto portion.
| Is This Answer Correct ? | 0 Yes | 1 No |
What is the maximum and minimum length of macro variable
what are the categories that sas informats are used to the place the data? : Sas-administrator
how sas deals with business intelligence? : Sas-bi
you have a data set like this. data qqq; input name $ total; cards; qq 22 ww 33 qq 22 ee 44 rr 33 ww 44 ; run; and you want output like this......... name total qq 22 ww 44 Do it by data set step.
What is the differnce between SDTM 3.1.2 to 3.1.1 version
What are the efficacy variables in your study?
2 Answers Accenture, Quintiles,
What is maximum number of rows and cols can be handled in SAS?
How would you define the end of a macro?
Do you think professionally?
how do we get duplicate observations in a separate dataset?
Give some examples where proc report’s defaults are different than proc print’s defaults?
What are the ways to do a “table lookup” in sas?