0 / 0
Go back to the English version of the documentation
Tabele raportowania relacji artefaktów
Last updated: 27 lip 2023
Tabele raportowania relacji artefaktów

Sprawdź instrukcje Postgres, Db2 dla tabel, które są powiązane z relacjami artefaktów.

Obszar tematu Nazwa tabeli Opis
Relacje artefaktów secondary_category_skojarzenia Lista kategorii dodatkowych, do których przypisany jest artefakt.
Relacje artefaktów powiązania_biznesowy_biznes Relacje między terminami biznesowymi.
Relacje artefaktów powiązania_klasów_danych Relacje między klasami danych.
Relacje artefaktów powiązania_strategii Relacje między strategiami.
Relacje artefaktów powiązania_zestawów_danych_przywoływalnych Relacje między zestawami danych odniesienia.
Relacje artefaktów powiązanie_klasy_klasyfikacji Relacje między klasyfikacjami.
Relacje artefaktów rządnie_powiązania_reguł Relacje między regułami zarządzania.
Relacje artefaktów powiązania_reguł artifact_enforcement_rule_Association Niejawne relacje między artefaktem zarządzania a regułami wymuszania.
Relacje artefaktów powiązania_kategorii_artifact_category_Association Relacje między artefaktem zarządzania a kategorią.

Tabela secondary_category_stowarzyszeń

Ta tabela zawiera listę kategorii dodatkowych, do których przypisany jest artefakt.

Ta tabela zawiera następujące kolumny:

  • artifact_id -identyfikator artefaktu.
  • category_id -identyfikator kategorii dodatkowej określonego artefaktu.
  • Instrukcja CREATE TABLE:

    create table secondary_category_associations(category_id varchar(128) not null,
    artifact_id varchar(128) 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(category_id,
    artifact_id));
    

    Instrukcje ALTER TABLE:

    alter table secondary_category_associations add constraint fk_secondary_category_associations_categories_22 foreign key (category_id) references categories(category_id) on
    delete
    	cascade on
    	update
    	no action
    
    alter table secondary_category_associations add constraint fk_secondary_category_associations_governance_artifacts_23 foreign key (artifact_id) references governance_artifacts(artifact_id) on
    delete
    	cascade on
    	update
    	no action
    
  • Instrukcja CREATE TABLE:

    create table secondary_category_associations(category_id varchar(128) not null,
    artifact_id varchar(128) 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(category_id,
    artifact_id),
    period SYSTEM_TIME (tech_start,
    tech_end) )
    

    Instrukcje ALTER TABLE:

    alter table secondary_category_associations add constraint fk_secondary_category_associations_categories_22 foreign key (category_id) references categories(category_id) on
    delete
    	cascade on
    	update
    	no action
    
    alter table secondary_category_associations add constraint fk_secondary_category_associations_governance_artifacts_23 foreign key (artifact_id) references governance_artifacts(artifact_id) on
    delete
    	cascade on
    	update
    	no action
    

tabela business_term_stowarzyszeń

Ta tabela zawiera informacje na temat relacji między terminami biznesowymi.

Ta tabela zawiera następujące kolumny:

  • end1_term_artifact_id -identyfikator artefaktu źródłowego.
  • end2_term_artifact_id -identyfikator artefaktu docelowego.
  • relationship_type -typ relacji zidentyfikowanej z artefaktu źródłowego do artefaktu docelowego.
  • reverse_relationship_type -typ relacji zidentyfikowanej z artefaktu docelowego do artefaktu źródłowego.
  • Instrukcja CREATE TABLE:

    create table business_term_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type))
    

    Instrukcja ALTER TABLE:

    alter table business_term_associations add constraint fk_business_term_associations_glossary_custom_relationship_def_1 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action
    
  • Instrukcja CREATE TABLE:

    create table business_term_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type),
    period SYSTEM_TIME (tech_start,
    tech_end) ) ORGANIZE by row
    

    Instrukcja ALTER TABLE:

    alter table business_term_associations add constraint fk_business_term_associations_glossary_custom_relationship_def_1 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action
    

tabela data_class_skojarzenia

Ta tabela zawiera informacje na temat relacji między klasami danych.

Ta tabela zawiera następujące kolumny:

  • end1_data_class_artifact_id -identyfikator artefaktu źródłowego.
  • end2_data_class_artifact_id -identyfikator artefaktu docelowego.
  • relationship_type -typ relacji zidentyfikowanej z artefaktu źródłowego do artefaktu docelowego.
  • reverse_relationship_type -typ relacji zidentyfikowanej z artefaktu docelowego do artefaktu źródłowego.
  • Instrukcja CREATE TABLE:

    create table data_class_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type))
    

    Instrukcja ALTER TABLE:

    alter table data_class_associations add constraint fk_data_class_associations_glossary_custom_relationship_def_3 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action
    
  • Instrukcja CREATE TABLE:

    create table data_class_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type),
    period SYSTEM_TIME (tech_start,
    tech_end) ) ORGANIZE by row
    

    Instrukcja ALTER TABLE:

    alter table data_class_associations add constraint fk_data_class_associations_glossary_custom_relationship_def_3 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action
    

powiązania_strategii

Ta tabela zawiera informacje na temat relacji między strategiami.

Ta tabela zawiera następujące kolumny:

  • end1_policy_artifact_id -identyfikator artefaktu źródłowego.
  • end2_policy_artifact_id -identyfikator artefaktu docelowego.
  • relationship_type -typ relacji zidentyfikowanej z artefaktu źródłowego do artefaktu docelowego.
  • reverse_relationship_type -typ relacji zidentyfikowanej z artefaktu docelowego do artefaktu źródłowego.
  • Instrukcja CREATE TABLE:

    create table policy_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type))
    

    Instrukcje ALTER TABLE:

    alter table policy_associations add constraint fk_policy_associations_glossary_custom_relationship_def_4 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action 
    
  • Instrukcja CREATE TABLE:

    create table policy_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type),
    period SYSTEM_TIME (tech_start,
    tech_end) ) ORGANIZE by row
    

    Instrukcja ALTER TABLE:

    alter table policy_associations add constraint fk_policy_associations_glossary_custom_relationship_def_4 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action
    

Tabela reference_data_set_stowarzyszeń

Ta tabela zawiera informacje na temat relacji między zestawami danych odniesienia.

Ta tabela zawiera następujące kolumny:

  • end1_rds_artifact_id -identyfikator artefaktu źródłowego.
  • end2_rds_artifact_id -identyfikator artefaktu docelowego.
  • relationship_type -typ relacji zidentyfikowanej z artefaktu źródłowego do artefaktu docelowego.
  • reverse_relationship_type -typ relacji zidentyfikowanej z artefaktu docelowego do artefaktu źródłowego.
  • Instrukcja CREATE TABLE:

    create table reference_data_set_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type))
    

    Instrukcja ALTER TABLE:

    ALTER TABLE reference_data_set_associations ADD CONSTRAINT fk_reference_data_set_associations_glossary_custom_relationship_def_5 FOREIGN KEY (cr_definition_id) REFERENCES glossary_custom_relationship_def(cr_definition_id) ON
    delete
    	cascade on
    	update
    	no action
    
  • Instrukcja CREATE TABLE:

    create table reference_data_set_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type),
    period SYSTEM_TIME (tech_start,
    tech_end) ) ORGANIZE by row 
    

    Instrukcja ALTER TABLE:

    alter table reference_data_set_associations add constraint fk_reference_data_set_associations_glossary_custom_relationship_def_5 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action
    

tabela classification_Association

Ta tabela zawiera informacje na temat relacji między klasyfikacjami.

Ta tabela zawiera następujące kolumny:

  • end1_classifiaction_artifact_id -identyfikator artefaktu źródłowego.
  • end2_classifiaction_artifact_id -identyfikator artefaktu docelowego.
  • relationship_type -typ relacji zidentyfikowanej z artefaktu źródłowego do artefaktu docelowego.
  • reverse_relationship_type -typ relacji zidentyfikowanej z artefaktu docelowego do artefaktu źródłowego.
  • Instrukcja CREATE TABLE:

    create table classification_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type))
    

    Instrukcja ALTER TABLE:

    alter table classification_associations add constraint fk_classification_associations_glossary_custom_relationship_def_2 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action
    
  • Instrukcja CREATE TABLE:

    create table classification_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type),
    period SYSTEM_TIME (tech_start,
    tech_end) ) ORGANIZE by row
    

    Instrukcja ALTER TABLE:

    alter table classification_associations add constraint fk_classification_associations_glossary_custom_relationship_def_2 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action
    

Tabela governance_rule_stowarzyszeń

Ta tabela zawiera informacje na temat relacji między regułami zarządzania.

Ta tabela zawiera następujące kolumny:

  • end1_rule_artifact_id -identyfikator artefaktu źródłowego.
  • end2_rule_artifact_id -identyfikator artefaktu docelowego.
  • relationship_type -typ relacji zidentyfikowanej z artefaktu źródłowego do artefaktu docelowego.
  • reverse_relationship_type -typ relacji zidentyfikowanej z artefaktu docelowego do artefaktu źródłowego.
  • Instrukcja CREATE TABLE:

    create table governance_rule_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type))
    

    Instrukcja ALTER TABLE:

    alter table governance_rule_associations add constraint fk_governance_rule_associations_glossary_custom_relationship_def_6 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action 
    
  • Instrukcja CREATE TABLE:

    create table governance_rule_associations(end1_artifact_id varchar(128) not null,
    end2_artifact_id varchar(128) not null,
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(128),
    cr_definition_id varchar(128),
    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(end1_artifact_id,
    end2_artifact_id,
    relationship_type),
    period SYSTEM_TIME (tech_start,
    tech_end) ) ORGANIZE by row 
    

    Instrukcja ALTER TABLE:

    alter table governance_rule_associations add constraint fk_governance_rule_associations_glossary_custom_relationship_def_6 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action
    

Tabela artifact_enforcement_rule_stowarzyszeń

Ta tabela zawiera informacje na temat niejawnych relacji między artefaktem zarządzania a regułami wymuszania.

Ta tabela zawiera następujące kolumny:

  • artifact_id -identyfikator powiązanego artefaktu zarządzania.
  • rule_id -identyfikator reguły wymuszania, której częścią jest powiązany artefakt.
  • Instrukcja CREATE TABLE:

    create table artifact_enforcement_rule_associations(artifact_id varchar(128) not null,
    rule_id varchar(128) 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(artifact_id,
    rule_id));
    

    Instrukcje ALTER TABLE:

    alter table artifact_enforcement_rule_associations add constraint fk_artifact_enforcement_rule_associations_governance_artifacts_18 foreign key (artifact_id) references governance_artifacts(artifact_id) on
    delete
    	cascade on
    	update
    	no action
    
    alter table artifact_enforcement_rule_associations add constraint fk_artifact_enforcement_rule_associations_enforcement_rules_19 foreign key (rule_id) references enforcement_rules(rule_id) on
    delete
    	cascade on
    	update
    	no action
    
  • Instrukcja CREATE TABLE:

    create table artifact_enforcement_rule_associations(artifact_id varchar(128) not null,
    rule_id varchar(128) 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(artifact_id,
    rule_id),
    period SYSTEM_TIME (tech_start,
    tech_end) )
    

    Instrukcje ALTER TABLE:

    alter table artifact_enforcement_rule_associations add constraint fk_artifact_enforcement_rule_associations_governance_artifacts_18 foreign key (artifact_id) references governance_artifacts(artifact_id) on
    delete
    	cascade on
    	update
    	no action
    
    alter table artifact_enforcement_rule_associations add constraint fk_artifact_enforcement_rule_associations_enforcement_rules_19 foreign key (rule_id) references enforcement_rules(rule_id) on
    delete
    	cascade on
    	update
    	no action
    

Tabela artifact_category_stowarzyszeń

Ta tabela zawiera informacje na temat powiązania między artefaktem zarządzania a kategorią.

Ta tabela zawiera następujące kolumny:

  • category_id-identyfikator kategorii artefaktu.
  • artifact_id -identyfikator definicji relacji niestandardowej.
  • relationship_type -typ relacji zidentyfikowanej z artefaktu do kategorii.
  • cr_definition_id -identyfikator definicji relacji niestandardowej.
  • reverse_relationship_type -typ relacji zidentyfikowanej z kategorii do artefaktu.
  • Instrukcja CREATE TABLE:

    create table artifact_category_associations(category_id varchar(128) not null,
    artifact_id varchar(128) not null,
    cr_definition_id varchar(128),
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(256),
    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(category_id,
    artifact_id,
    relationship_type))
    

    Instrukcja ALTER TABLE:

    alter table artifact_category_associations add constraint fk_artifact_category_associations_glossary_custom_relationship_def_9 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action
    
  • Instrukcja CREATE TABLE:

    create table artifact_category_associations(category_id varchar(128) not null,
    artifact_id varchar(128) not null,
    cr_definition_id varchar(128),
    relationship_type varchar(256) not null,
    reverse_relationship_type varchar(256),
    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(category_id,
    artifact_id,
    relationship_type),
    period SYSTEM_TIME (tech_start,
    tech_end) ) ORGANIZE by row
    

    Instrukcja ALTER TABLE:

    alter table artifact_category_associations add constraint fk_artifact_category_associations_glossary_custom_relationship_def_9 foreign key (cr_definition_id) references glossary_custom_relationship_def(cr_definition_id) on
    delete
    	cascade on
    	update
    	no action
    

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