WHAT IS DEBUGGING? HOW TO TEST THE DEBUGGING IN SAS?
Answer Posted / venkatesh.layam
debugging is error identifier process.if you have any
errors in your programme it will display in log window
the errors are different type
syntaxal error
semantic errors
exection time errors
logical errors:which can not gives the error message but
the results are change dynamically.
macro debugging(by using mlogic mprint symbolgen)
>and can identify errors in the programme by using debug
option'/';
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are the default statistics for means procedure?
what do you mean by data staging area? : Sas-di
Can you explain the process of calendar?
which date functions advances a date time or date/time value by a given interval? : Sas programming
what other sas products have you used and consider yourself proficient in using? : Sas programming
what versions of sas have you used (on which platforms)? : Sas programming
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
Differences between where and if statement?
What is connection profile? : sas-grid-administration
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 transformation in sas data integration? : Sas-di
Give e an example of..
How do dates work in sas?
how can you import .csv file in to sas? : Sas programming
How can you limit the variables written to output dataset in data step?