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...

In the flow of DATA step processing, what is the first
action in a typical DATA Step?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro

1255


what is the purpose of _error_? : Sas programming

1187


Describe the function and untility of the most difficult SAS macro that you have written.

2272


in the flow of data step processing, what is the first action in a typical data step? : Sas programming

1109


what is factor analysis? : Sas-administrator

1144


What is the different between functions and PROCs that calculate the same simple descriptive statistics?

1845


what is change analysis in sas di ? : Sas-di

1109


What do the SAS log messages "numeric values have been converted to character" mean?

1428


how many display types available in sas bi dashboard? : Sas-bi

1141


explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di

1140


what is proc Index? and what is proc document?

2764


Which statement does not perform automatic conversions in comparisons?

1854


what is sas metadata server? : Sas-di

1153


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

2244


How does the internal authentication work in sas? : sas-grid-administration

1167