what is pdv? how it is related to input buffer in sas?
Answer Posted / vera royzman
Program data vector (PDV)is a logical area in memory where
SAS builds a data set, one observation at a time. When a
program executes, SAS reads data values from the input
buffer (a logical area in memory into which SAS reads each
record of raw data when SAS executes an INPUT statement) or
creates them by executing SAS language statements. The data
values are assigned to the appropriate variables in the
program data vector. From here, SAS writes the values to a
SAS data set as a single observation. When the DATA step
reads a SAS data set, SAS reads the data directly into the
program data vector.
Is This Answer Correct ? | 78 Yes | 0 No |
Post New Answer View All Answers
What commands are used in the case of including or excluding any specific variables in the data set?
How is character variable converted into numeric variable and vice versa?
How will you generate test data with no input data?
What is the difference between order and group variable in proc report?
How to read an input file in sas?
How many data types are there in SAS?
How do dates work in SAS data?
What are the table names in oracle database...?
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
What is the difference between using drop = data set option in data statement and set statement?
Give e an example of..
what is program data vector? : Sas-administrator
what is SAS OPTIMIZATION?
Explain the main difference between the sas procedures and functions? : Sas-administrator
What is a macro routine?