What is proc sql pass through facility?

Answer Posted / k.padmaja

To manage external databases from sas for running
applications, in this we can use connect and disconnect
statement

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are types of transport files?

6881


What are the 3 components in sas programming?

729


What is the difference between using drop = data set option in data statement and set statement?

642


What function CATX syntax does?

693


what is PhaseIII, ODS, TLG, Macro and Proc in SAS

3911






What are the statements in proc sql?

598


do you prefer proc report or proc tabulate? Why? : Sas programming

581


What is a put statement?

668


what is the use of sas management console? : Sas-di

615


In SAS explain which statement does not perform automatic conversions in comparisons?

803


How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?

1171


How you can read the variables that you need?

657


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.

1803


how many types prompting framework can be broken down to? : Sas-bi

637


what are the categories that sas informats are used to the place the data? : Sas-administrator

621