HOW MANY WAYS YOU CAN RETRIEVE THE DATA FROM ORACLE TABLES?
WHAT IS ORACLE CLINICAL? HOW IT IS USEFUL?

Answers were Sorted based on User's Feedback



HOW MANY WAYS YOU CAN RETRIEVE THE DATA FROM ORACLE TABLES? WHAT IS ORACLE CLINICAL? HOW IT IS USEF..

Answer / chaitanya

Two ways that I know to retrieve data from oracle tables are

1. Libname Facility:
Example:

libname mydblib oracle user=testuser password=testpass path=hrdept_002;

proc print data=mydblib.employees;
where dept='CSR010';
run;

2. Passthrough Facility:
Example :
proc sql;
connect to oracle as dbcon
(user=testuser password=testpass buffsize=100
path='myorapath');
select *
from connection to dbcon
(select * from customers
where customer like '1%');
disconnect from oracle;
quit;
b. Oracle Clinical:
Oracle Clinical (OC) is the software package that is widely used in the pharmaceutical environment as a data entry
and storage tool. It captures the data entered from CRF (Case Report Form) and stores the data in its database
system.

Is This Answer Correct ?    12 Yes 0 No

HOW MANY WAYS YOU CAN RETRIEVE THE DATA FROM ORACLE TABLES? WHAT IS ORACLE CLINICAL? HOW IT IS USEF..

Answer / santosh

A> %let orapath (user=testuser password=testpass
buffsize=100
path='myorapath');
proc sql;

connect to oracle (&orapath);
select * from connection to oracle
(select * from <Table name>);
Where dept =’Sales’;
Disconnect from oracle
Quit;
Run;

Is This Answer Correct ?    1 Yes 1 No

HOW MANY WAYS YOU CAN RETRIEVE THE DATA FROM ORACLE TABLES? WHAT IS ORACLE CLINICAL? HOW IT IS USEF..

Answer / shah

You can also use OLEDB, and ODBC database connectivity to
get data from Oracle.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SAS Interview Questions

What is SAS Information Map Studio and its purpose ?

2 Answers   SAS, TCS,


how to shift the rows to cols? eg: i have like field1 field2 field3 10 20 20 this should be displayed as field1 10 field2 20 field3 30 (without the obs col) how do this?can i use transpose or tell me suitable way to do this?

3 Answers   CMC,


What do you know about symput and symget?

0 Answers  


What report output formats can you generate using SAS?

3 Answers   Accenture,


what is the diff. b/w proc means and proc summary?

12 Answers   CitiGroup,






what is the primary variable in your study?

3 Answers   Accenture,


what is the difference between proc means and proc tabulate?

3 Answers   Cognizant, CTS,


What is the one statement to set the criteria of data that can be coded in any step?

4 Answers  


How would you delete duplicate observations?

9 Answers  


Differences between where and if statement?

0 Answers  


What is difference between sas rename and lable?

4 Answers  


what is sas and what are the functions? : Sas-administrator

0 Answers  


Categories