Answer Posted / rc
1. Reprogram and compare output.
2. Check log to see no warnings, errors.
etc.
| Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
Differentiate between proc means and proc summary.
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
is data integration and etl programming is same? : Sas-di
What does proc print, and proc contents are used for?
how to read the variables in sas? : Sas-administrator
Name some categories in sas 9? : sas-grid-administration
I need level 2 to 5 sas using companies in india
Which date function advances a date, time or datetime value by a given interval?
explain the concepts and capabilities of business object? : Sas-bi
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
How will you use the WHO Drug Dictionary for Reporting Clinical Trials?
What can be the size of largest dataset in SAS?
What is maximum storage capability of SAS?
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.