You are on page 1of 4

IBMp7-aix 6.

1 , lpar (logical partitioning of the servers in nodes 2 to 5 nodes) 59 *4


quadcores (per cpu can handle 4 threads simultaneously) cpus in whole server 2.5 gigahrtz

Sun oracle solaric- sun spark servers : m9000-solaris 10 (zoning which is the logical
partitioning): 40 * 4 cpus : 3.1 gigahertz

8 tb: 210 gb of momory: 70 gb for sga.


Intel machines: linux : 32* 4 cpus cpu , 150 GB ram:
crontab

Erwin: Data modelling tool for developers. CA ERwin Data Modeling is an industry-leading
data modeling solution that provides a simple, visual interface to manage our complex data
environment. CA ERwin Data Modeler (ERwin) is a software tool for data modeling (data
requirements analysis, database design etc.) of custom developed information systems, including
databases of transactional systems and data marts.
ETL: stands for Extract, Transform and Load. Data transferring tool like Sql loader.
ELT: Extract Load transport
EDA: Event driven architecture
SOA: Service Oriented Architecture
DATA WAREHOUSE: A data warehouse, unlike a data mart, deals with multiple subject areas
and is typically implemented and controlled by a central organizational unit such as the corporate
Information Technology (IT) group. Often, it is called a central or enterprise data warehouse.
Typically, a data warehouse assembles data from multiple source systems.
DATA MARTS: A data mart is a simple form of a data warehouse that is focused on a single
subject (or functional area), such as Sales, Finance, or Marketing. Data marts are often built and
controlled by a single department within an organization. Given their single-subject focus, data
marts usually draw data from only a few sources. The sources could be internal operational
systems, a central data warehouse, or external data.
ORACLE DATA INTEGRATER ENTERPRIZE EDITION: It is an ELT tool used for high
speed data movement between disparate systems. ELT is an innovative approach to extract, load
and transform data. ODI is used with Oracle Golden Gate when data is replicated at the
heterogeneous target and are combined together to deliver real time data across heterogeneous
environments.OGG transfers the data to the datawarehouse and ODI performs bulk
transformations to feed the tables.
GG TRAIL FILE: If they is an outage during data is transferred, the, trail files that store the
changed data are persistent and can be applied again at the target or the source database.
ORACLE CRM: customer relationship management. Earlier it was Siebel CRM. The latest
version is 8 CRM2000. Siebel have many applications like HR, CRM, Financial, Pharma for
different kinds of clients. These are the applications needed by companies.
Golden Gate replication: Moves the committed transactions from redo logs and maintain
transaction integrity. Uses its own CSN (commit sequence number) to identify the transaction
which is based on the oracle database SCN (system change number). GG moves only changed
committed data and filtering of the data can be done at extract and at schema, table, column or
row levels. Row level transformations can be done at the capture stage or at the delivery stage.
After capturing the committed transctions the data is converted to canonical format files called
TRAIL FILES.
Oracle GG has built in loop detection, which can differentiate between the replicated data and
the new data entered. OR we can exclude the replication of ggsuser, that way also we can avoid
the looping of the data.
The Management Pack of GG consists of Golden Gate Director (for creating solutions
graphically, open as a web based and can also give ggsci commands) and Golden Gate monitor
(for monitoring golden gate objects and sending alerts). It is a server based management pack.
Oracle Golden gate Veridata is a validating tools(at high speed and low impact) for validating
the data at replicate is in sync with the source data.Validating using veridata for big databases
will take lot of time to validate the data at target and source. So can also use dblink to check for
data validity. First create the dblink using this statement:
Sqlplus> create public database link dblink using ‘remote’ – where remote is the tnsnames entry
of the remote database. Then give this statement to check for the differences in rows or columns
or data. This statement will give the statements differing.
Sqlplus>select * from employees minus select * from employees@dblink;
And can count the records using this statement :
Sqlplus> select count (*) from emoloyees; -- give this staement at target and source to match the
numbers of the records.
A database link is the schema object in one database which enables you to access the objects in
another database.
Golden Gate Director is a multitiered graphical interface application which can report, manage,
configure,define all oracle golden gate processes.
Golden Gate Monitor has a monitor agent installed on each golden gate managed database. It
does not make changes to configuration like GG director. It is a tool that displays on a web
browser the configuration, statistics, alerts and history of all the golden gate instances.
Oracle GG to flat files: GG can transfer the extracted or captured data to the flat file (text files)
which can be be used by third party for data loading.

You might also like