Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain.
Answers were Sorted based on User's Feedback
Answer / juan
complie. When you submit a DATA step for execution, SAS
checks the syntax of the SAS statements and compiles them,
that is, automatically translate the statements into
machine code.
| Is This Answer Correct ? | 32 Yes | 1 No |
how to change the execute of macro
what is intially documentation in sas?
What are the 3 components in sas programming?
Give an example where SAS fails to convert character value to numeric value automatically?
what is the basic structure sas administrator? : Sas-administrator
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 the statements that are executed only?
How many ways to overcome a missing values???
Hot to suppress characters from a given string?
How does the internal authentication work in sas? : sas-grid-administration
what is data access? : Sas-di
how do the in= variables improve the capability of a merge? : Sas programming