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

what is the difference between floor and ceil functions in sas? : Sas-administrator

1252


what are the best practices to process the large data sets in sas programming? : Sas-administrator

1021


what is the one statement to set the criteria of data that can be coded in any step? : Sas programming

1144


Explain the special input delimiters used in sas programming.

1006


In sas, what are the areas that you are most interested in? : sas-grid-administration

1068


What are the different operating system platforms in which we can use sas? : sas-grid-administration

1065


why a stop statement is needed for the point= option on a set statement?

1071


What are the data types that sas contain?

1173


What is the sas data set? : sas-grid-administration

979


what is the Population you used in your project, is it ITT or PP?

2739


What are the prime responsibilities of data integration administrator? : Sas-di

1063


describe about metadata object? : Sas-di

1065


I need level 2 to 5 sas using companies in india

2382


what are validation tools that are used in sas? : Sas-administrator

1054


What is SAS?

1048