Answer Posted / mohini
it is a automatic variable.it counts the no. of line and
displays at which line errors are occur
| Is This Answer Correct ? | 3 Yes | 12 No |
Post New Answer View All Answers
What are the functions used for character handling?
what is the basic structure sas administrator? : Sas-administrator
How can sas program be validated?
What are the ways in which macro variables can be created in sas programming?
What do the SAS log messages "numeric values have been converted to character" mean?
AE datasets names? how many types?
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.
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
what is sas enterprise intelligence architecture? : Sas-bi
What are the default statistics that proc means produce?
explain the main difference between the nodup and nodupkey options? : Sas-administrator
What do you know about sas data set?
what can you learn from the sas log when debugging? : Sas programming
What is the difference between one to one merge and match merge? Give an example.
what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?