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


Please Help Members By Posting Answers For Below Questions

Which statement does not perform automatic conversions in comparisons?

1440


What is maximum number of rows and cols can be handled in SAS?

1068


how does sas handle missing values in a merge? : Sas programming

764


what is transformation in sas data integration? : Sas-di

759


How do you add a number to a macro variable? : sas-macro

735


what are the types of interactive display types? : Sas-bi

842


Explain what Proc glm does?

830


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

2106


How to read an input file in sas?

901


Describe the function and utility of the most difficult SAS macro that you have written?

2256


Describe crosslist option in tables statement?

934


Can you explain the process of calendar?

856


In proc transpose and data step with arrays which one you pick?

2780


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.

2022


what are sas bi dashboard components? : Sas-bi

864