Oracle 视图 ALL_GOLDENGATE_RULES 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图 ALL_GOLDENGATE_RULES 主要用于查询和管理Oracle GoldenGate (OGG) 数据捕获和重放过程中使用的路由规则和参数。
ALL_GOLDENGATE_RULES 包括多个路由规则及其相关参数,其中路由规则可用于管理 OGG 重放过程和数据捕获。通过使用 All_GOLDENGATE_RULES 视图,可以查询已定义的规则的内容和参数,并确定匹配特定条件的应用程序。
使用 All_GOLDENGATE_RULES 视图进行查询有几种不同的方法,最常用的是执行 SELECT 语句来检索所需的视图的全部或部分信息。例如,可以使用以下 SELECT 语句检索 ALL_GOLDENGATE_RULES 视图中所有路由规则的名称:
SELECT RULE_NAME FROM ALL_GOLDENGATE_RULES;
另外,可以使用以下语句检索特定类型的规则:
SELECT * FROM ALL_GOLDENGATE_RULES WHERE RULE_TYPE = ‘Mapping’;
官方英文解释
ALL_GOLDENGATE_RULES
displays information about the GoldenGate rules accessible to the current user.
Related View
DBA_GOLDENGATE_RULES
displays information about all GoldenGate server rules in the database.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Name of the GoldenGate process |
|
|
|
Type of the GoldenGate process:
|
|
|
|
For global, schema or table rules, the GoldenGate type of the rule:
|
|
|
|
Owner of the rule set |
|
|
|
Name of the rule set |
|
|
|
Type of the rule set:
|
|
|
|
|
Owner of the rule |
|
|
|
Name of the rule |
|
|
For global, schema or table rules, the type of the rule:
|
|
|
|
Current rule condition |
|
|
|
For table and schema rules, the schema name |
|
|
|
For table rules, the table name |
|
|
|
For global, schema or table rules, indicates whether to include tagged LCRs ( |
|
|
|
For subset rules, the type of operation:
|
|
|
|
For subset rules, the row subsetting condition |
|
|
|
For global, schema or table rules, the name of the database where the LCRs originated |
|
|
|
For rules created by GoldenGate administrative APIs, the original rule condition when the rule was created |
|
|
|
For rules created by GoldenGate administrative APIs, indicates whether the current rule condition is the same as the original rule condition ( |
|
|
|
The global name of the source root database where the transactions originated |
|
|
|
The container name of the database where the transactions originated |
See Also:
“DBA_GOLDENGATE_RULES”