At compile time when a SAS data set is read, what items are
created?
Answer Posted / sirisha
the items created are input buffer,PDV,descriptor portion
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How would you invoke a macro? : sas-macro
How do you convert basic cube to transaction cube and transaction cube to basic cube?
what is transformation in sas data integration? : Sas-di
What can be the size of largest dataset in SAS?
what has been your most common programming mistake? : Sas programming
Explain the use of proc print and proc contents?
how do you debug and test your sas programs? : Sas programming
How sas treats the dsd delimiters?
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.
In proc transpose and data step with arrays which one you pick?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
Differentiate between ceil and floor functions.
Which command is used to save logs in the external file?
State the difference between INFORMAT and FORMAT ?
what is sas and what are the functions? : Sas-administrator