Answer Posted / vamsi
In ur program execution time display 1000 errors that time u r using error=1 display only forst occurred error shown
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what are validation tools that are used in sas? : Sas-administrator
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 basic structure of the SAS base program?
Explain data step in SAS
what is metadata? : Sas-bi
explain the concepts and capabilities of business object? : Sas-bi
Hi Jeevan/Akshara I have tried to contact SASI Vats for latest Advanced SAS Programming Certification Dumps (A00-212) but have not got any response. I would highly and gratefully appreciate your assistance in this regard. If you guys have access to this, would you be kind enough to forward it to me ? I would abide by all the terms you have for this. Please, note my email id: upretigopi@yahoo.com Preti Sharma
Mention the category in which sas informats are placed?
Differentiate between proc means and proc summary.
How we can call macros with in data step? : sas-macro
Enlist the functions performed by sas.
how can you create zero observation dataset? : Sas programming
Explain the use of proc gplot? : sas-grid-administration
what are _numeric_ and _character_ and what do they do? : Sas programming
how does sas handle missing values in assignment statements? : Sas programming