Oracle 视图 DBA_XSTREAM_SPLIT_MERGE_HIST 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_XSTREAM_SPLIT_MERGE_HIST用于存储和查看Capture进程或注册的Streams进程及其活动。
它表示在时间窗口内进行的合并和拆分活动,这些活动是在暂停和重新启动应用程序进程时完成的以维护Streams环境。
当Capture进程在捕获和实施数据的变化时,Streams有时需要拆分运行的队列表以获取更具体的控制。最重要的是,Streams提供队列合并功能,以允许将多于一个队列(可能具有多个父队列和多个嵌套的消费者)合并为单个队列逻辑实例,以改进性能并精简体系结构。
视图DBA_XSTREAM_SPLIT_MERGE_HIST包含有关已拆分和合并元数据和组件的元数据以及完成操作的应用程序进程信息。可以使用此视图检查实施拆分和合并的日期和时间,以及实施拆分和合并的操作类型(即合并、拆分或两者)。
要查看此视图,需要具有SELECT_CATALOG_ROLE角色以及执行以下查询所需的DBA角色:
SELECT *
FROM dba_xstream_split_merge_hist;
官方英文解释
DBA_XSTREAM_SPLIT_MERGE_HIST
displays information about past XStream automatic split and merge operations.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Name of the original capture process |
|
|
Name of the cloned capture process |
|
|
|
Owner of the queue used by the original capture process |
|
|
|
Name of the queue used by the original capture process |
|
|
|
Owner of the queue used by the cloned capture process |
|
|
|
Name of the queue used by the cloned capture process |
|
|
|
Status of the original capture process:
|
|
|
|
Status of the cloned capture process:
|
|
|
|
Name of the original XStream component that receives database changes directly from the original capture process. The component is either a progagation or a local apply process. |
|
|
|
Name of the cloned XStream component that receives database changes directly from the cloned capture process. The component is either a progagation or a local apply process. |
|
|
|
Type of the component in
|
|
|
|
Unique ID of the script to split or merge operation |
|
|
|
Status of the recoverable script:
|
|
|
|
type of action performed by the script:
|
|
|
|
For |
|
|
|
Status of the action:
|
|
|
|
Time when status was last updated |
|
|
|
Time when the action started |
|
|
|
Time (in seconds) that the cloned capture process lags behind the original capture process |
|
|
|
Owner of the job that performs the split or merge operation |
|
|
|
Name of the job that performs the split or merge operation |
|
|
|
Error number if the capture process was aborted |
|
|
|
Error message if the capture process was aborted |