What are the different operating system platforms in which we can use sas? : sas-grid-administration
No Answer is Posted For this Question
Be the First to Post Answer
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.
Under what circumstances would you code a SELECT construct instead of IF statements?
What are _numeric_ and _character_ and what do they do?
WHAT DOES A SAS SPECIFICATION DOCUMENT SDS CONTAIN ?
· What are some good SAS programming practices for processing very large data sets?
Given an unsorted data set, how to read the last observation to a new data set?
what is the frontend and backend of sas? Is sas is a progaming langauge or tool? on which langauge sas depends?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
Does anybody has SAS Platform Administration certification dumps. pls send to hariithepalli@gmail.com
How long can a macro variable be? A token? : sas-macro
how will you locate the sas platform applications? : Sas-bi
What system options would you use to help debug a macro? : sas-macro