Oracle 视图 V$XSTREAM_OUTBOUND_SERVER 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图:V$XSTREAM_OUTBOUND_SERVER
用途:V$XSTREAM_OUTBOUND_SERVER可以显示当前数据库中激活的XStream出站复制服务器信息,包括连接信息、空间及错误等。
使用方法:可以使用SELECT语句查询,示例如下:
SELECT server_name,server_guid,host,port,status,version
FROM v$xstream_outbound_server;
官方英文解释
V$XSTREAM_OUTBOUND_SERVER
displays statistics about an outbound server. An outbound server sends LCRs to the XStream client application.
Note:
When the COMMITTED_DATA_ONLY
column is YES
in the V$XSTREAM_OUTBOUND_SERVER
view, the V$STREAMS_APPLY_SERVER
view provides additional information about the outbound server process, and information about the apply server background processes used by the outbound server.
Column | Datatype | Description |
---|---|---|
|
|
Session ID of the outbound server’s session |
|
|
Serial number of the outbound server’s session |
|
|
Process identification number of the operating-system process that sends LCRs to the client application |
|
|
Name of the outbound server |
|
|
Time when the client application attached to the outbound server |
|
|
State of the outbound server When the
When the
When a state refers to a capture process, it is the capture process that captures changes for the outbound server. When a state refers to a propagation, it is the outbound server that sends LCRs to the XStream client application. |
|
|
Transaction ID undo segment number of the transaction currently being processed. This column is populated only if the |
|
|
Transaction ID slot number of the transaction currently being processed. This column is populated only if the |
|
|
Transaction ID sequence number of the transaction currently being processed. This column is populated only if the |
|
|
Commit SCN of the transaction currently being processed. This column is populated only if the |
|
|
Total number of transactions sent by the outbound server to the XStream client application since the last time the client application attached to the outbound server. This column is populated only if the |
|
|
Number of the current LCR being processed by the outbound server. This value is reset to 1 at the beginning of each transaction. This column is populated only if the |
|
|
Total number of LCRs sent by the outbound server to the XStream client application since the last time the client application attached to the outbound server |
|
|
Time the last LCR was sent by the outbound server to the XStream client application |
|
|
Message number of the last LCR sent by the outbound server to the XStream client application |
|
|
Creation time at the source database of the last LCR sent by the outbound server to the client application |
|
|
Time elapsed (in hundredths of a second) sending LCRs to the XStream client application since the last time the client application attached to the outbound server |
|
|
Commit position of the transaction currently being processed. This column is populated only if the |
|
|
Position of the last LCR sent to the XStream client application. This column is populated only if the |
|
|
Total number of bytes sent by the outbound server to the XStream client application since the last time the client application attached to the outbound server |
|
|
|
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
“V$STREAMS_APPLY_SERVER”