...
- Shows the version number and the edition
- Shows the MINE process is running. Which PLOG sequence (which is the same as the redo log sequence) and SCN the MINE is processing and the database time related to the SCN
- Shows the APPLY process is running. Which PLOG sequence and SCN the APPLY is processing and the (source) database time related to the SCN
- Name of the replication
- Separator
- Replication statistics for table OE.CUSTOMER. The replication is at 99%. 1138 records have been mined. 1133 records have been applied. There are 0 conflicts.
- Replication statistics for table OE.ADDRESSES. The replication is at 99%. 1138 records have been mined. 1133 records have been applied. There are 0 conflicts.
- Replication statistics for table OE.CARD_DETAILS. The replication is at 99%. 1008 records have been mined. 1005 records have been applied. There are 0 conflicts.
- Replication statistics for table OE.ORDER_ITEMS. The replication is at 99%. 7615 records have been mined. 7596 records have been applied. There are 0 conflicts.
- Replication statistics for table OE.ORDERS. The replication is at 99%. 6143 records have been mined. 6127 records have been applied. There are 0 conflicts.
- Replication statistics for table OE.INVENTORIES. The replication is at 99%. 7468 records have been mined. 7450 records have been applied. There are 0 conflicts.
- Replication statistics for table OE.LOGON. The replication is at 99%. 7567 records have been mined. 7534 records have been applied. There are 0 conflicts.
- Number of tables listed in the command console.
Note | ||||||
---|---|---|---|---|---|---|
TIP 1 If the Dbvisit Replicate console is not running then:
|
Note | ||
---|---|---|
TIP 12 If there are many tables in the replication, then only a certain number of tables will be shown in the console. The number of active tables shown in the console is configurable with setting "STATUS_BAR_ACTIVE_TABLES". To get a list of all the tables in the replication, use the command:
The "list progress" report can be emailed automatically if notification is setup. The schedule when this report is sent is controlled by "NOTIFY_DAILY_LIST_PROGRESS_TIME24" |
Note | ||
---|---|---|
TIP 23 The statistics of the replication can be viewed with the following commands:
|
Note | ||
---|---|---|
TIP 34 There are many settings and configurations possible with Dbvisit Replicate. To see all the settings type: "show all" For example, to see all the settings regarding notifications:
|
Confirm the data is replicated
To confirm that the data is replicated the following query can be run on both the source and the target database.
1. Connect to the source database.
No Format |
---|
sqlplus oe/oe@ttorcl_src |
Run the query.
No Format |
---|
SQL> select to_char(sum(order_total),'$999,999,999,999.00') "Total Orders" from orders;
Total Orders
--------------------
$7,317,074,993.00 |
2. Connect to the target database.
No Format |
---|
sqlplus oe/oe@ttorcl_trg |
Run the query.
No Format |
---|
SQL> select to_char(sum(order_total),'$999,999,999,999.00') "Total Orders" from orders;
Total Orders
--------------------
$7,317,074,993.00 |
Note |
---|
This query should give the approximately the same number on the source and target database when the replication is < 100%. Run the queries several times to see that the numbers are updating on both the source and target database. If the replication is at 100% then the numbers will be the same. |
...