Setting up an Active Master Database

This tutorial will make use of the pre-defined DSNs repdb1_1122 and repdb2_1122 shipped with TimesTen 11.2.2. The hostnames of the two machines in the examples are tthost1 and tthost2. repdb1_1122 will be created as the active database on tthost1, and repdb2_1122 will be created on tthost2 as the standby database.

In order to set up an active standby pair, you need to first create an active master database. This database must include a user with the ADMIN privilege, and an application user with some tables to demonstrate data replication.

1. Create an Active Master Database

  1. Log in to server 1(tthost1) as the instance administrator and define a DSN for the active master database. In this example we will use a pre-defined DSN repdb1_1122.

    Refer to the section Setting up a Data Source Name if you need information on how to define your own DSNs.


  2. Create and connect to the database repdb1_1122 using ttIsql

    ttisql repdb1_1122


2. Create a Database User to Administer the Replication Operations

  1. Create a database user and assign it the role of the database and replication administrator. This user is responsible for setting up and managing the active/standby pair.

    In ttIsql, create an administrator and grant this user admin privilege. In this example, this user created is adm.

    create user adm identified by adm;
    grant admin to adm;


  2. Create an application user and tables in the database. In our example, we will create an application user called appuser and this user will own the customers and orders tables.

    create user appuser identified by appuser;
    grant create session, create table to appuser;


  3. Log in as the user appuser in ttIsql.

    connect "dsn=repdb1_1122;uid=appuser";

    Execute the following SQL statements, or run the script create_appuser_obj.sql located in the <install_dir>/quickstart/sample_scripts/replication directory, to create the 2 tables in the appuser schema.

    create table customers (
       cust_number number,
       first_name varchar2(12) not null,
       last_name varchar2(12) not null,
       address varchar2(100) not null,
      primary key (cust_number));

    insert into customers values (3700,'Peter','Burchard','882 Osborne Avenue, Boston, MA 02122');
    insert into customers values (1121,'Saul','Mendoza','721 Stardust Street, Mountain View, CA 94043');

    create table orders (
       order_number number not null,
       cust_number number not null,
       prod_number char(10) not null,
       order_date date not null,
      primary key (order_number),
      foreign key (cust_number) references customers (cust_number));

    insert into ORDERS values (6853036,3700,'0028616731',to_date('2008-04-05','yyyy-mm-dd'));
    insert into ORDERS values (6853041,3700,'0198612710',to_date('2009-01-12','yyyy-mm-dd'));
    insert into ORDERS values (6853169,1121,'0003750299',to_date('2008-08-01','yyyy-mm-dd'));
    insert into ORDERS values (6853174,1121,'0789428741',to_date('2008-10-25','yyyy-mm-dd'));
    insert into ORDERS values (6853179,1121,'0198612583',to_date('2009-02-02','yyyy-mm-dd'));


  4. Use the tables command in ttIsql to confirm that the tables have been created.

    tables;

    After setting up an initial database, you can now define the configuration of the active standby pair and designate the current database as the active database.


1 2 3 Next >