HOW MANY WAYS YOU CAN RETRIEVE THE DATA FROM ORACLE TABLES?
WHAT IS ORACLE CLINICAL? HOW IT IS USEFUL?
Answer Posted / 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 |
Post New Answer View All Answers
Explain the main difference between the sas procedures and functions? : Sas-administrator
What are the different versions of sas that you have used until now? : sas-grid-administration
what is the primary data source for the wrs? : Sas-bi
What is the length assigned to the target variable by the scan function?
What Proc glm does?
What are the difference between ceil and floor functions in sas?
is data integration and etl programming is same? : Sas-di
how will you location sas platform applications available from web browser? : Sas-bi
name several ways to achieve efficiency in your program? : Sas programming
how does sas handle missing values in formats? : Sas programming
what is the difference between unique key and primary key? : Sas-di
what can you learn from the sas log when debugging? : Sas programming
what has been your most common programming mistake? : Sas programming
Difference between sum function and using “+” operator?
How would you determine the number of missing or nonmissing values in computations?