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 a post baseline?
If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn’t have a value?
How would you define the end of a macro?
Have you been involved in editing the data or writing data queries?
1 Answers BioServe, Oracle, Sasken,
What is difference between sas rename and lable?
Hi, I need to create a SAS Map of USA using SAS Graphs(Proc Gmap).The data i have dosent contain any co-ordinates of USA cities or counties or states, and the zip codes are diffrent in the data i have from the zip code in the Maps.US dataset in the Maps Library for SAS MAPS. the data i have is a sales report. i have to generate the maps according to the states,cities aligned in the sales data, HELP Appriciated
What is the difference between using drop = data set option in data statement and set statement?
what are different type of sas servers ? On which server does the sas code execute ?
How we can call macros with in data step? : sas-macro
explain the main difference between the nodup and nodupkey options? : Sas-administrator
Explain append procedure?
Tell me more about the parameters in macro? : sas-macro