Translation not up to date
The translation of this page does not represent the latest version. For the latest updates, see the English version of the documentation.
Last updated: 27. 7. 2023
Zkontrolujte příkazy Postgres, Db2 pro tabulky, které souvisí s pravidly ochrany dat.
Oblast předmětu | Název tabulky | Popis |
---|---|---|
Pravidla | pravidlo_vynucení | Pravidla ochrany dat, která jsou definovaná. |
tabulka enforcement_rules
Tato tabulka obsahuje informace o pravidlech vynucení (pravidel ochrany dat), která jsou definována.
Tato tabulka má následující sloupce:
rule_id
-Identifikátor pravidla.rule_type
-Typ pravidla.name
-název pravidla.created_by
-Identifikátor uživatele, který vytvořil pravidlo.created_on
-Časové razítko, kdy bylo pravidlo vytvořeno.modified_by
-Identifikátor uživatele, který naposledy změnil pravidlo.modified_on
-Časové razítko, kdy bylo pravidlo naposledy upraveno.description
-Popis pravidla.action_name
-typ akce, kterou toto pravidlo vynucuje.rule_json
-znázornění JSON definovaného pravidla.
Příkaz 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));
Příkaz 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) )
Další informace
Nadřízené téma: Vytváření sestav tabulky