Does SAS ?Translate? (compile) or does it ?Interpret?? Explain.
Answer Posted / phanirajiv
koduri u r wrong.
by default SAS is a compiled.
the interpret option works only when u mention the option
debug.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
what is SAS OPTIMIZATION?
How can you limit the variables written to output dataset in data step?
what is proc Index? and what is proc document?
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.
How can sas program be validated?
what is intially documentation in sas?
how can you put a "trace" in your program? : Sas programming
What is your favorite all time computer book? Why?
Can you explain the process of calendar?
How to include or exclude specific variables in a data set?
Explain proc univariate?
What are the ways in which macro variables can be created in sas programming?
is data integration and etl programming is same? : Sas-di
Explain the difference between using drop = data set option in set and data statement?
What are all the problems you faced while validating tables and reports?