Where do the database management systems store data and how do
u import them.
Answer Posted / solasa
Most clinical data management systems used for clinical
trials today store their data in relational database
software such as Oracle or Microsoft SQL Server.
A relational database is composed of a set of rectangular
data matrices called “tables” that relate or
associate with one another by certain key fields. The
language most often used to work with relational databases
is structured query language (SQL).
The SAS/ACCESS SQL Pass-Through Facility and the SAS/ACCESS
LIBNAME engine are the two methods that
SAS provides for extracting data from relational databases.
example:
SAS ACESS/SQL pass facility
proc sql;
connect to oracle as oracle_tables
(user = USERID orapw = PASSWORD path =
"INSTANCE");
create table AE as
select * from connection to oracle_tables
(select * from AE_ORACLE_TABLE );
disconnect from oracle_tables;
quit;
example 2:
SAS ACCESS/LIBNAME STATEMENT:
libname oratabs oracle user=USERNAME
orapw = PASSWORD path = "@INSTANCE" schema =
TRIALNAME;
data adverse;
set oratabs.AE_ORACLE_TABLE;
where query_clean = “YES”;
keep subject verbatim ae_date pt_text;
run;
| Is This Answer Correct ? | 18 Yes | 0 No |
Post New Answer View All Answers
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5
What is the use of PROC gplot?
Name types of category in which SAS Informats are placed?
How to create a permanent sas data set?
what is transformation in sas data integration? : Sas-di
What is the use of the %include statement?
What would you change about your job?
How would you define the end of a macro? : sas-macro
What are the limitations for memory allocation for SAS variables
What is the difference between %put and symbolgen? : sas-macro
Name validation tools used in SAS
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
explain what is factor analysis? : Sas-administrator
How you can read the variables that you need?
Which are the statements whose placement in the data step is critical?