how to read the variables in sas? : Sas-administrator
No Answer is Posted For this Question
Be the First to Post Answer
What is a post baseline?
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5
where are dashboard components are created and maintained? : Sas-bi
Where do the database management systems store data and how do u import them.
what is the main difference between rename and label? (don't say that they both perform the same function).
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.
what is the difference between x=substr(name,1,2); and substr(name,1,2)='x';
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?
Can we replace a dataset into view?
what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake
What is the use of divide function?
Mention few capabilities of sas framework.