Where do the database management systems store data and how do
u import them.

Answers were Sorted based on User's Feedback



Where do the database management systems store data and how do u import them...

Answer / 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

Where do the database management systems store data and how do u import them...

Answer / rajkumar

Most of the people are store their data in Oracle , SQL
Server.

We have to import the data by using import procedure.

Proc import datafile = <file path> out = <dataset name>
dbms = <identifier> replace;
<data-source-statement(s)>;
run;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SAS Interview Questions

What are the differences between sum function and using “+” operator?

0 Answers  


what is null hypothesis? why do you consider that?

0 Answers   Accenture, Quintiles,


how can u create zero observation dataset?

11 Answers   CitiGroup,


what are input dataset and output dataset options?

6 Answers   HCL,


How to Rename Library?

3 Answers  






what is change analysis in sas di ? : Sas-di

0 Answers  


Which is the Best SAS training Institute in Delhi NCR for SAS certification preparation

1 Answers   SAS,


Describe a time when you were really stuck on a problem and how you solved it?

1 Answers  


how to read the variables in sas? : Sas-administrator

0 Answers  


what is washout period?

3 Answers   Cognizant,


There are 200 observations in a dataset, i want to pull out the observation no's 100, 150,180,190 by using Proc SQL? How you can get it?

5 Answers  


hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?

1 Answers   Pfizer,


Categories