Oracle 视图 ALL_XSTREAM_INBOUND_PROGRESS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图ALL_XSTREAM_INBOUND_PROGRESS提供了用于检索和监视当前正在运行的XStream收入进度的信息。该视图包含XStream收入和处理过程正在进行的有关信息,例如订阅的地址、元信息和收入类型。
要使用Oracle视图ALL_XSTREAM_INBOUND_PROGRESS,可以使用SELECT语句查询出所需的信息。例如,要获取所有正在进行的XStream收入进度,可以使用以下SELECT语句:
SELECT * FROM ALL_XSTREAM_INBOUND_PROGRESS;
此外,还可以使用WHERE子句来查询具有特定属性的收入进度。例如,可以使用以下SELECT语句来获取XStream收入进度来自指定地址的信息:
SELECT * FROM ALL_XSTREAM_INBOUND_PROGRESS
WHERE SUBSCRIBER_ADDRESS = ‘sample_url’;
官方英文解释
ALL_XSTREAM_INBOUND_PROGRESS
displays information about the progress made by the XStream inbound servers accessible to the current user.
Related View
DBA_XSTREAM_INBOUND_PROGRESS
displays information about the progress made by all XStream inbound servers in the database.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Name of the inbound server |
|
|
Position of the processed low transaction |
|
|
|
All messages with a commit position less than this value have been applied |
|
|
|
Highest commit position of a transaction that has been applied |
|
|
|
Position of the spill low watermark of the transactions currently being applied |
|
|
|
Earliest position of the transactions currently being applied |
|
|
|
|
Earliest message number of the transactions currently being applied |
|
|
|
Message number up to which all transactions have definitely been applied. This value is the low watermark for the inbound server. That is, messages with a commit message number less than or equal to this message number have definitely been applied, but some messages with a higher commit message number may also have been applied. |
|
|
Time at which the message with the message number displayed in the |
|
|
|
Time at which the message with the message number displayed in the |
|
|
|
Spill low watermark. Any message with a lower SCN has either been applied or spilled to disk. The XStream client application does not need to send logical change records (LCRs) with a lower SCN than the spill low watermark. Spilled messages may not have been applied yet. |
|
|
|
|
Database where the transaction originated |
|
|
The global name of the source root database |
See Also:
“DBA_XSTREAM_INBOUND_PROGRESS”