What is proc sql pass through facility?

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


Please Help Members By Posting Answers For Below Questions

What are pdv and it functions?

757


what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming

861


How sas treats the dsd delimiters?

928


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.

2003


If you could design your ideal job, what would it look like?

2657






What is the sas data set? : sas-grid-administration

749


what are the best practices to process the large data sets in sas programming? : Sas-administrator

755


Do you know the features of sas?

792


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?

2574


Differentiate input and infile.

800


What can you learn from the SAS log when debugging?

1095


What are types of transport files?

7329


What is the general format of function in sas? : sas-grid-administration

753


what is transformation in sas data integration? : Sas-di

743


What are the table names in oracle database...?

2474