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 pdv and it functions?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
How sas treats the dsd delimiters?
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 you could design your ideal job, what would it look like?
What is the sas data set? : sas-grid-administration
what are the best practices to process the large data sets in sas programming? : Sas-administrator
Do you know the features of sas?
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?
Differentiate input and infile.
What can you learn from the SAS log when debugging?
What are types of transport files?
What is the general format of function in sas? : sas-grid-administration
what is transformation in sas data integration? : Sas-di
What are the table names in oracle database...?