Use the show capture command to view statistics for the Capture process.
The basic show capture command shows an overview of the process, such as the datasource, whether the process is running or stopped, and other basic information.
To view detailed statistics for the Capture process, use the show capture command with the [detail] option. That option shows detailed statistics that can help you assess the performance of the process, decide whether tuning parameters need to be adjusted, and detect problems or bottlenecks.
Statistic | Description |
---|---|
Host | The name of the local machine (source system). |
System time | The current time according to the system clock. |
Source | The name of the source Oracle instance. |
Status |
The status of the Capture process (running or stopped). |
Since | The time that Capture started. |
Oracle current redo log | The sequence number of the redo log to which Oracle is writing. |
Capture current redo log | The sequence number of the redo log that Capture is reading. |
Capture log offset | The location in the redo log of the record being processed by Capture. |
Last redo record processed | The record being processed by Capture or the last one processed if Capture is not currently replicating data. |
Capture state |
The state of the process, in relation to the replication work it performs: It can be one of the following:
|
Activation ID | The internal identifying number of the configuration activation, which identifies the associated processes and queues. |
Error count | The number of records that were skipped due to Oracle errors since Capture started. Data from skipped records is not reflected in the target database. |
Operations captured | The number of redo records that Capture successfully processed for replication since it started. |
Transactions captured | The number of committed Oracle transactions whose operations Capture successfully replicated since it started. |
Concurrent sessions | The number of Oracle sessions being processed at the same time. |
HWM concurrent sessions | The largest number of concurrent Oracle sessions since Capture started. |
Checkpoints performed | The number of checkpoints to save the state of Capture since Capture started. Frequent checkpointing generates additional overhead on the system, but infrequent checkpoints cause SharePlex to recover less quickly from a system or instance failure. By default, Capture checkpoints every 20,000 seconds, but it can be adjusted with the SP_OCT_CHECKPOINT_FREQ parameter. |
Total operations processed | The number of all Oracle operations and SharePlex internal operations processed by Capture since it started, including records captured for replication and records for objects not in the configuration. |
Total transactions completed |
The number of committed Oracle transactions processed by Capture since it started, including transactions captured for replication and transactions for objects not in the replication configuration. |
Total Kbytes read | The size in kilobytes of the data that was processed by Capture since it started. |
Redo records in progress | The number of records that Capture is processing. |
Redo records processed | The total number of redo records processed. |
Redo records ignored | The number of records that Capture ignored because they are not associated with objects in the configuration. |
Redo records - last HRID | The head row ID value for the last chained row processed by Capture. |
Note: The show capture detail output for RAC systems will vary slightly from what is described here. The information is essentially the same, but is necessarily presented differently.
Supported sources: | Oracle |
Supported targets: | All |
Authorization level: | Viewer (3) |
Issued for: | source system |
Related commands: | show export, show import, show post, show read |
Basic command | Command options | Remote options |
---|---|---|
show capture |
[detail] [for datasource] |
[ on host | on host:portnumber | on login/password@host | on login/password@host:portnumber ] |
Component | Description |
---|---|
show capture |
|
detail |
Shows detailed statistics that can help you tune Capture’s performance and diagnose problems. Example: sp_ctrl(sysA)> show capture detail |
for datasource |
This option shows Capture statistics only for a specific datasource. datasource is expressed as o.SID where SID is an ORACLE_SID. Examples: sp_ctrl(sysA)> show capture for o.oraA |
These options enable you to issue the command on a remote machine and to script commands that include a login name, password, port number, or combination of those items.
Option | Description |
---|---|
on host |
Execute the command on a remote system (one other than the one where the current sp_ctrl session is running). You are prompted for login credentials for the remote system. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on SysA |
on host:portnumber |
Execute the command on a remote system when a remote login and port number must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on SysA:8304 |
on login/password@host |
Execute the command on a remote system when a remote login, password, and host name must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on john/spot5489@SysA |
on login/password@host:portnumber |
Execute the command on a remote system when a remote login, password, host name, and port number must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on john/spot5489@SysA:8304 |
Use the show config command to display statistics for the active configuration.
For example:
sp_ctrl (irvspxu14:8567)> show config
Materialized Views Replicating:
“SCOTT”.”V5_ROWID”
Tables Replicating with Key:
“SCOTT”.”S1TEST2” KEY: KC
“SCOTT”.”S2TEST2” KEY: KC
“SCOTT”.”T1TEST2” KEY: KC
“SCOTT”.”T2TEST2” KEY: KC
Tables Replicating with no Key:
“TED”.”DEMO_SRC”
“TED”.”DEMO_DEST”
“SCOTT”.”FOOS”
filename : allscott
Datasource : o.ora920
Activated : 29-Jan-09 10:11:41
Actid : 1810
Total Objects : 160
Total Objects Replicating : 160
Total Objects Not Replicating : 0
View config summary in /splex/rr/svn/var92/log/ora920_config_log
The following is displayed if this command is executed before Capture is up:
sp_ctrl (irvspxu14:8567)> show config
Capture is not yet replicating the most recent activation
Re-issue this command when capture’s replication is current
Show Config provides the following statistics:
Activated: The date and time that the configuration was activated.
For more information about the objects in the configuration, view the SID_config_log, where SID is the ORACLE_SID of the instance. SharePlex prints activation results and error messages in this file, which resides in the log sub-directory of the SharePlex variable- data directory.
An example of the log file follows:
File Name :wild
Datasource :ora920
Activated :29-Jan-09 10:11:41
Actid :1810
Total Objects :9
Total Objects Replicating :9
Total Objects Not Replicating :0
Objects Replicating:
"SCOTT"."SRC_TEST1"
"SCOTT"."SRC_TEST2"
"SCOTT"."SS2_TEST1"
"SCOTT"."SRC_TEST3"
"SCOTT"."SRC_TEST4"
"SCOTT"."SS2_TEST2"
"SCOTT"."SRC_TEST5"
"SCOTT"."SRC_TEST6"
"SCOTT"."SS2_TEST3"
Objects Not Replicating:
Note:It may take a few seconds or longer to display the statistics.
Supported sources: | Oracle |
Supported targets: | All |
Authorization level: | Viewer (3) |
Issued for: | source system |
Related commands: | activate config, view config, verify config |
Basic command | Remote options |
---|---|
show config filename |
[ on host | on host:portnumber | on login/password@host | on login/password@host:portnumber ] |
Component | Description |
---|---|
filename |
The name of the configuration for which you want to view statistics. Configuration names are case-sensitive. Example: sp_ctrl(sysA)> show config sales |
These options enable you to issue the command on a remote machine and to script commands that include a login name, password, port number, or combination of those items.
Option | Description |
---|---|
on host |
Execute the command on a remote system (one other than the one where the current sp_ctrl session is running). You are prompted for login credentials for the remote system. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on SysA |
on host:portnumber |
Execute the command on a remote system when a remote login and port number must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on SysA:8304 |
on login/password@host |
Execute the command on a remote system when a remote login, password, and host name must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on john/spot5489@SysA |
on login/password@host:portnumber |
Execute the command on a remote system when a remote login, password, host name, and port number must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on john/spot5489@SysA:8304 |
Use the show encryption key command to view the AES encryption key that is being used by SharePlex. For more information about SharePlex encryption, see the SharePlex Administration Guide.
Supported sources: | Oracle |
Supported targets: | All |
Authorization level: | Operator (2) |
Issues on: | source system |
Related commands: | create encryption key, set encryption key, reset encryption key |
Basic command | Remote options |
---|---|
show encryption key |
[ on host | on host:portnumber | on login/password@host | on login/password@host:portnumber ] |
These options enable you to issue the command on a remote machine and to script commands that include a login name, password, port number, or combination of those items.
Option | Description |
---|---|
on host |
Execute the command on a remote system (one other than the one where the current sp_ctrl session is running). You are prompted for login credentials for the remote system. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on SysA |
on host:portnumber |
Execute the command on a remote system when a remote login and port number must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on SysA:8304 |
on login/password@host |
Execute the command on a remote system when a remote login, password, and host name must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on john/spot5489@SysA |
on login/password@host:portnumber |
Execute the command on a remote system when a remote login, password, host name, and port number must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on john/spot5489@SysA:8304 |
Use the show export command to view statistics about the Export process. This command keeps a record of the number of messages sent to target systems by all Export processes on the local machine, as well as optional statistic about Export performance. The message count begins over again whenever Export stops and starts again.
Note: Typically, a message approximately corresponds to a SQL operation, but there can be multiple messages for one operation on a LONG or LOB column, and there could be one record for numerous operations in an array insert. A message also can be an internal SharePlex operation.
Supported sources: | Oracle |
Supported targets: | All |
Authorization level: | Viewer (3) |
Issued for: | source system |
Related commands: | show capture, show import, show post, show read |
Basic command | Command options | Remote options |
---|---|---|
show export |
[detail] [queue queuename] |
[ on host | on host:portnumber | on login/password@host | on login/password@host:portnumber ] |
Component |
Description |
---|---|
queue queuename | Constrains the output to a specific named Export queue. |
detail |
Shows the following statistics:
|
These options enable you to issue the command on a remote machine and to script commands that include a login name, password, port number, or combination of those items.
Option | Description |
---|---|
on host |
Execute the command on a remote system (one other than the one where the current sp_ctrl session is running). You are prompted for login credentials for the remote system. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on SysA |
on host:portnumber |
Execute the command on a remote system when a remote login and port number must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on SysA:8304 |
on login/password@host |
Execute the command on a remote system when a remote login, password, and host name must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on john/spot5489@SysA |
on login/password@host:portnumber |
Execute the command on a remote system when a remote login, password, host name, and port number must be provided. If used, must be the last component of the command syntax. Example: sp_ctrl(sysB)>status on john/spot5489@SysA:8304 |
Host : abcl23 Queue : abcl23 Kbytes Target Status Exported Since Total Backlog ---------- --------------- ------------ ------------------ ---------- ---------- abcl23.abc Running 1063 18-Aug-14 17:05:29 1082 0 Since activated Transmission rate : 5 Kb/sec Highest transmission rate : 10 Kb/sec Mon Aug 18 14:45:49 2014 Average packet size : 680 bytes Average send time : 68 microseconds Since export started Transmission rate : 4 Kb/sec Highest transmission rate : 2 Kb/sec Mon Aug 18 17:07:18 2014 Average packet size : 615 bytes Average send time : 16 microseconds During the last 27 seconds: Transmission rate : 25 Kb/sec Average packet size : 678 bytes Number of packets : 1081 Average send time : 19 microseconds Largest deviation from average : 6002 microseconds Send times deviating by more than %23 : %0.9
© ALL RIGHTS RESERVED. Nutzungsbedingungen Datenschutz Cookie Preference Center