What is proc sql pass through facility?

Answers were Sorted based on User's Feedback



What is proc sql pass through facility?..

Answer / chandu

Performing "database related queries" directly through the Proc sql is called passthrough facility.

Is This Answer Correct ?    10 Yes 0 No

What is proc sql pass through facility?..

Answer / narendra

pass through is used for accessing the table from databases.

Is This Answer Correct ?    1 Yes 0 No

What is proc sql pass through facility?..

Answer / 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

What is proc sql pass through facility?..

Answer / xxx

PTF is used for connect to External or internal databases
like oracle, EXCEL,ACCESS.advantage of PTF is directly
connected to database means we can directly create,
delete,manipulate modify the tables in the database.

proc sql;
connect to engine_name user_name= password=**** path=' ';
disconnect from Engine_name;
quit;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SAS Interview Questions

What do the PUT and INPUT functions do?

0 Answers  


What does a PROC TRANSPOSE do?

8 Answers   Accenture,


What is the difference between class statement and by statement in proc means?

0 Answers  


what are scrubing procedures in SAS?

1 Answers   Oracle,


how does sas handle missing values in a merge? : Sas programming

0 Answers  






Name any two sas spawners? : sas-grid-administration

0 Answers  


For clinical entire study how many tables will create approx?

0 Answers   TCS,


how can u convert this 25-jul-2010 from numeric to charcter?

3 Answers  


How would you code the criteria to restrict the output to be produced?

6 Answers   Accenture,


describe about physical data integration? : Sas-di

0 Answers  


In proc transpose and data step with arrays which one you pick?

0 Answers   Accenture, Quintiles,


How will you assign all the variables of an dataset into a macro variable separated by a space? For example if a dataset has variables A,B,C. Assign them to a macro variable X as X=A B C

3 Answers   Accenture, Oracle,


Categories