0 / 0
Go back to the English version of the documentation
Tabele raportowania reguł
Last updated: 27 lip 2023
Tabele raportowania reguł

Sprawdź instrukcje Postgresi Db2 dotyczące tabel, które są powiązane z regułami ochrony danych.

Obszar tematu Nazwa tabeli Opis
Reguły reguł_wymuszenia Zdefiniowane reguły ochrony danych.

Tabela enforcement_rules

Ta tabela zawiera informacje na temat reguł wymuszania (reguł ochrony danych), które są zdefiniowane.

Ta tabela zawiera następujące kolumny:

  • rule_id -Identyfikator reguły.
  • rule_type -typ reguły.
  • name -nazwa reguły.
  • created_by -identyfikator użytkownika, który utworzył regułę.
  • created_on -znacznik czasu utworzenia reguły.
  • modified_by -identyfikator użytkownika, który ostatnio zmodyfikował regułę.
  • modified_on -znacznik czasu ostatniej modyfikacji reguły.
  • description -opis reguły.
  • action_name -typ działania, które jest wymuszane przez tę regułę.
  • rule_json -reprezentacja JSON zdefiniowanej reguły.
  • Instrukcja 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));
    
  • Instrukcja 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) )
    

Więcej inform.

Temat nadrzędny: Tabele raportowania

Generative AI search and answer
These answers are generated by a large language model in watsonx.ai based on content from the product documentation. Learn more