At compile time when a SAS data set is read, what items are
created?
Answers were Sorted based on User's Feedback
Answer / vemula
compilation time 3 items were create
1.input buffer
2.pdv
3.descriptor portion.
during compilations first it checks the syntax
then it assigns the datatype and informat
then it translates the sas code to standard machine code
1.input buffer: It is a logical area where sas reads each
record at a time when input statement is executed.
2. pdv: it is logical area in memory into which
SAS builds sas dataset one record at atime
3. descriptor protion: it contains the information about
dataset attributes and variable attributes
dataset attributes include when it was created etc
var attrb such as datatype format informat length etc.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ananth
it checks the syntax error.
descriptor portion of the dataset.
| Is This Answer Correct ? | 2 Yes | 1 No |
An input buffer is only created when data is read from external files/datalines not in case of reading data step.So the appropriate answer will be just PDV and Dataset Descriptor.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / bhimanagouda
i)Input Buffer
ii) Pdv is created
pdv includes _N_ & _ERROR_
| Is This Answer Correct ? | 0 Yes | 1 No |
how many types of prompts are there? : Sas-bi
The Lion King is hosting an animal conference. All the animals in the world attend except one. Which animal does not attend?
how can you sort the dataset having millions of OBS(instead of sort procedure?
what are the types of interactive display types? : Sas-bi
How to do user inputs and command line arguments in SAS? D&B
how can you put a "trace" in your program? : Sas programming
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
What is your weekness? I am confuse what to say about this question. so can u give some answer which can be yur strenght.
Which are SAS Windows Clients & SAS Java Clients
Why is a STOP statement needed for the point=option on a SET statement?
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
in the flow of data step processing, what is the first action in a typical data step? : Sas programming