Go back to the English version of the documentation规则报告表
规则报告表
Last updated: 2024年12月13日
检查 Postgres Db2 语句中与数据保护规则相关的表。
主题区域 | 表名 | 描述 |
---|---|---|
规则 | enforcement_rules | 定义的数据保护规则。 |
enforcement_rules 表
此表包含有关所定义的实施规则 (数据保护规则) 的信息。
此表具有以下列:
rule_id
-规则的标识。rule_type
-规则的类型。name
-规则的名称。created_by
-创建规则的用户的标识。created_on
-创建规则时的时间戳记。modified_by
-上次修改规则的用户的标识。modified_on
-上次修改规则时的时间戳记。description
-规则的描述。action_name
-此规则实施的操作的类型。rule_json
-已定义规则的 JSON 表示。
Postgres
CREATE TABLE 语句:
create table enforcement_rules(rule_id varchar(36) not null,
rule_type varchar(128) not null,
name varchar(256) not null,
description text,
action_name varchar(256) not null,
created_on timestamp(6) not null,
created_by varchar(128) not null,
modified_on timestamp(6),
modified_by varchar(128),
rule_json text not null,
tech_start TIMESTAMP(6) not null default CURRENT_TIMESTAMP,
tech_end TIMESTAMP(6) not null default to_timestamp('9999-12-30', 'YYYY-MM-DD'),
ts_id TIMESTAMP(6) not null default CURRENT_TIMESTAMP,
primary key(rule_id));
Db2
CREATE TABLE 语句:
create table enforcement_rules(rule_id varchar(36) not null,
rule_type varchar(128) not null,
name varchar(256) not null,
description clob,
action_name varchar(256) not null,
created_on timestamp(12) not null,
created_by varchar(128) not null,
modified_on timestamp(12),
modified_by varchar(128),
rule_json clob not null,
tech_start TIMESTAMP(12) not null IMPLICITLY HIDDEN generated always as row begin,
tech_end TIMESTAMP(12) not null IMPLICITLY HIDDEN generated always as row
end,
ts_id TIMESTAMP(12) not null generated always as transaction start ID,
primary key(rule_id),
period SYSTEM_TIME (tech_start,
tech_end) )
了解更多信息
父主题: 报告表