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
What are symget and symput? : sas-macro
How does proc sql work?
State the difference between INFORMAT and FORMAT ?
Can you execute a macro within a macro? Describe. : sas-macro
What is the function of output statement in a SAS Program?
why a stop statement is needed for the point= option on a set statement?
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
What is the function of Stop statement in a SAS Program?
What is SAS? What are the functions does it performs?
What are the features of base sas system?
What is substr function?
Tell e how how dealt with..
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
what is change analysis in sas di ? : Sas-di
describe about physical data integration? : Sas-di