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

/* This is example of age caluculate wihtout to display perfect days and years in output window */ data age; retain dob "12jun2003"d now "24may2011"d; age1=now-dob; age=(now-dob)/365.25; years=int(age); days1=round((age-years)*365.25); months=month(now)-1; if days1 gt 30 and months in(12,10,8,6,4,2)then do; month1=days1/30.4375; month=int(days1/30.4375); if day(now)=1 then days=1; else days=round((month1-month)*30.4375)+1; drop days1 month1 month; end; else if days1 gt 30 and months in (1,3,5,7,9,11)then do; month1=days1/30.4375; month=int(days1/30.4375); if day(now)=1 then days=1; else days=round((month1-month) *30.4375); drop days1 month1 month; end; drop age age1; proc print data=age; format dob now date.; run;

1 Answers   Emerio,


how to delete the duplicate columns permanently in SQL

2 Answers   Satyam,


What is Tabulate.?Why we use it.? Which type of output we get from Tabulate.?

3 Answers   TCS,


What are the new features included in the new version of SAS Programming Language?

0 Answers  


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

0 Answers  






how to read character value without using substr function in sas ?

3 Answers  


How many ways to overcome a missing values???

0 Answers   HSBC,


What does error:1 mean?

8 Answers   Accenture,


how to write code for left outer join in SAs using datastep?

8 Answers   CitiGroup,


what is washout period?

3 Answers   Cognizant,


Tell e how how dealt with..

0 Answers  


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