what is the usage for assigning error=1 in a dataset ?
Answer Posted / pooja
It means our program has one syntax error
Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Which statement does not perform automatic conversions in comparisons?
What is maximum number of rows and cols can be handled in SAS?
how does sas handle missing values in a merge? : Sas programming
what is transformation in sas data integration? : Sas-di
How do you add a number to a macro variable? : sas-macro
what are the types of interactive display types? : Sas-bi
Explain what Proc glm does?
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
How to read an input file in sas?
Describe the function and utility of the most difficult SAS macro that you have written?
Describe crosslist option in tables statement?
Can you explain the process of calendar?
In proc transpose and data step with arrays which one you pick?
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 are sas bi dashboard components? : Sas-bi