Answer Posted / chandu
Performing "database related queries" directly through the Proc sql is called passthrough facility.
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
what are 5 ways to perform a table lookup in sas? : Sas-administrator
What is the use of function Proc summary?
Hi, If anyone has base SAS certification dumps, please share.
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
Describe the function and utility of the most difficult SAS macro that you have written?
How can you limit the variables written to output dataset in data step?
Which command is used to save logs in the external file?
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.
Difference between SAS STATA & SPSS?
what are all the reports you generated in your recent project?
Can you execute macro within another macro? : sas-macro
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
What are the differences between sum function and using “+” operator?
how to do user inputs and command line arguments in sas?
what can you learn from the sas log when debugging? : Sas programming