Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

In ARRAY processing, what does the DIM function do?

1133


Describe the ways in which you can create a macro variable?

1058


Explain input and put function?

1106


Differentiate between ceil and floor functions.

1127


What are the applications primarily used by business analyst? : Sas-bi

964


Intern stastical programmer written test

705


What are all the problems you faced while validating tables and reports?

3424


What is interleaving in SAS?

1091


Where do you use proc means over proc freq?

1081


How substr function works in sas?

1176


What system options would you use to help debug a macro? : sas-macro

1074


Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks

2225


What is the function of output statement in a SAS Program?

1035


For what purposes have you used sas macros? : sas-macro

970


Explain the main difference between the sas procedures and functions? : Sas-administrator

1037