At compile time when a SAS data set is read, what items are
created?
Answers were Sorted based on User's Feedback
Answer / madhavi
At Compile time SAS creates
1.Input buffer
2.PDV(Program data vector)
3.Descriptor portion of the o/p dataset
| Is This Answer Correct ? | 25 Yes | 2 No |
Answer / ganesh
At compile time when a sas dataset is read it creates two
things only.
1)Programm data vector.
2)discriptive protion.
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / venkatesh.layam
when ever compiling time only inputbuffer will be created
while data set creation generally 3 steps been occureed
1.inputbuffer
2.pdv.
3.discription poortion
for external file:
when ever we import the external file that time input
buffer will be created.it happends in compilation phase
in the execution process the the pdv will be created
while execution 2 types of automatic variable will be
created.
_N_ :how many times datastep has been executed
_error_=by default the erroe=0 if have any errors more than
one it displays 1
data discriptior portion:in the data set column header
called data portion
and values portions called discription portion
using datalines:
when ever you use dataline for compilation and execution
directly pdv will be created but input buffer wil not be
created because only expternal data inputbuffer will be
created.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ch .sumalatha
when the sas dataset read pdv will create.input buffer
creates only at the time of reading raw datafile.at the
time of creation of pdv --data portion ,and discripter
portion created.at this time data will read and start the
iteration of the data step .at the same time _n _ and
_error_ are created.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / madhu
At compile time it creates input buffer,program data vector
and discription portion.
Input buffer is the temporary storage of memory with
variable length.
Pdv is storages lists of system defined var's and user
defined var's.
Discription portion contains details like when data set is
created, date , time , no of var's and no of obs etc.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / pointbreak
Three items are created:
1. input buffer:
2.program data vector(PDV)
3.descriptor information:
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / padmasri
In compile time when a SAS data set is read there are 3
items will be created.
1.Input Buffer
2.PDV (Program Data Vector)
3.Descriptor portion of the data set
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / bhasker
YA CH.SUMALATA UR RIGHT
at the time of reading existing data set pdv will be created
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / thanwi
PDV and Input buffers are created at compile time . and
_n_,_error_ were created at compile time
| Is This Answer Correct ? | 2 Yes | 2 No |
Are you involved in writing the inferential analysis plan? Tables specifications?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set.
How is character variable converted into numeric variable and vice versa?
where are dashboard components are created and maintained? : Sas-bi
what is the use of proc contents and proc print in sas? : Sas-administrator
Name statements that function at both compile and execution time.
What makes sas stand out to be the best over other data analytics tools?
what is the function of catx syntax? : Sas-administrator
What do you know about symput and symget?
Hi Friends, Am Priya,new to your forum. am looking for Interview questions on SAS Platform Administration. I searched everywhere but I couldn't find them,please can anyone help me with complete interview questions normally everyone will face in the interviews on SAS Administration. am really facing problems in the interviews,am not able to answer any of their questions. I would really appreciate all your help if you can email the complete Interview Questions to priyafeb84@gmail.com Kindly awaiting for your reply with eager
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?
I use NOCUM/NOPERCENT option in the tables statement like this Proc freq data = deepak; tables x y /nocum nopercent; run; Here I get nopercent and nocum in the output only for variables x and y. How do i do it for all variables? Deepak