Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the Program Data Vector (PDV)? What are its functions?

Answers were Sorted based on User's Feedback



What is the Program Data Vector (PDV)? What are its functions?..

Answer / nishant

When SAS processes a data step it has two phases.
Compilation phase and execution phase.
During the compilation phase the input buffer is created to
hold a record from external file. After input buffer is
created the PDV is created. The PDV is the area of memory
where sas builds dataset, one observation at a time. The PDV
contains two automatic variables _N_ and _ERROR_.

Is This Answer Correct ?    32 Yes 1 No

What is the Program Data Vector (PDV)? What are its functions?..

Answer / poornima

PDV (Program Data Vector) is a logical area in memory where
SAS creates a dataset one observation at a time.

Is This Answer Correct ?    15 Yes 0 No

What is the Program Data Vector (PDV)? What are its functions?..

Answer / cutepa1

To the above answers I like to add a bit of information that
PDV has even more automated variables such as
FIRST.<by-group-variable>, LAST.<by-group-variable>, _END_,
...etc, along with _ERROR_ and _N_ where each has got its
own significance to have a control over the execution of a
SAS Program.

Is This Answer Correct ?    6 Yes 0 No

What is the Program Data Vector (PDV)? What are its functions?..

Answer / raj

It 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 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.
Along with data set variables and computed variables, the
PDV contains two automatic variables, _N_ and _ERROR_. The
_N_ variable counts the number of times the DATA step
begins to iterate. The _ERROR_ variable signals the
occurrence of an error caused by the data during execution.
The value of _ERROR_ is either 0 (indicating no errors
exist), or 1 (indicating that one or more errors have
occurred). SAS does not write these variables to the output
data set.

Is This Answer Correct ?    5 Yes 0 No

What is the Program Data Vector (PDV)? What are its functions?..

Answer / pambrose

Source: SAS book

The PDV contains all the variables in the input data set, the variables created in DATA step statements, and the two variables, _N_ and _ERROR_, that are automatically generated for every DATA step. The _N_ variable represents the number of times the DATA step has iterated. The _ERROR_ variable acts like a binary switch whose value is 0 if no errors exist in the DATA step, or 1 if one or more errors exist

Variables that are created by the INPUT and the Sum statements are set to missing initially. Note that in this representation, numeric variables are initialized with a period and character variables are initialized with blanks. The automatic variable _N_ is set to 1; the automatic variable _ERROR_ is set to 0.

The variable TeamName is marked Drop in the PDV because of the DROP= data set option in the DATA statement. Dropped variables are not written to the SAS data set. The _N_ and _ERROR_ variables are dropped because automatic variables created by the DATA step are not written to a SAS data set

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More SAS Interview Questions

what is the effect of the options statement errors=1? : Sas programming

0 Answers  


Are you involved in writing the inferential analysis plan? Tables specifications?

0 Answers   Oracle,


How many versions came upto now in SAS?

3 Answers   CTS, TCS,


How to display duplicate observations in data?

1 Answers  


How do you add a prefix to some or all variables in a dataset using a SAS macro?

2 Answers  


How would you include common or reuse to be processed along with your statements?

0 Answers  


What is the difference between the proc sql and data step?

0 Answers  


What do the put and input function do?

0 Answers  


How would you identify a macro variable? : sas-macro

0 Answers  


in data set200 observation how to take 110,150,170 using sql procedure?

7 Answers   Accenture,


What is a post baseline?

1 Answers  


name some data transformation used in sas di? : Sas-di

0 Answers  


Categories