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
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
what is the purpose of _error_? : Sas programming
Describe the function and untility of the most difficult SAS macro that you have written.
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
what is factor analysis? : Sas-administrator
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
what is change analysis in sas di ? : Sas-di
What do the SAS log messages "numeric values have been converted to character" mean?
how many display types available in sas bi dashboard? : Sas-bi
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
what is proc Index? and what is proc document?
Which statement does not perform automatic conversions in comparisons?
what is sas metadata server? : Sas-di
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.
How does the internal authentication work in sas? : sas-grid-administration