0 / 0
資料の 英語版 に戻る
カスタマイズ・レポート・テーブル
最終更新: 2024年12月13日
カスタマイズ・レポート・テーブル

Postgres、 Db2 ステートメントで、カスタムの役割、関係、属性、プロパティーなどを含む表を確認します。

サブジェクト・エリア 表名 説明
カスタマイズ カテゴリー・カスタム役割 カスタム・カテゴリー役割。
カスタマイズ glossary_custom_relationship_def カスタム関係の定義。
カスタマイズ glossary_ca_attr_artifact_type_assoc カスタム属性定義でサポートされる成果物タイプ。
カスタマイズ glossary_custom_relationship_nodes カスタム関係定義のソース成果物タイプとターゲット成果物タイプ。
カスタマイズ glossary_custom_attr_def カスタム属性定義。
カスタマイズ glossary_ca_enum_list ENUM タイプのカスタム属性定義。
カスタマイズ ガバナンス成果物のカスタム属性値 (governance_artifact_custom_attr_values) カスタム属性値。
カスタマイズ アセット・カスタム・プロパティー 資産タイプに割り当てられたカスタム・プロパティー・グループと、そのグループの下のプロパティー。
カスタマイズ アセット・タイプ・カスタム・プロパティー カスタム・プロパティーのタイプとそれに関連付けられたカスタム・グループ。
カスタマイズ 「asset_prop_enum_list」 タイプ enumerationのカスタム・プロパティー。
カスタマイズ アセットのカスタム・プロパティーの値 資産に対して定義されているカスタム・プロパティーに割り当てられた値。

category_custom_roles テーブル

この表には、カスタム・カテゴリー役割に関する情報が含まれています。

この表には、以下の列があります。

  • role_id -カテゴリー・カスタム役割の ID。
  • role_name -カテゴリーのカスタム役割の名前。

Postgres

CREATE TABLE ステートメント:

create table category_custom_roles(role_id varchar(32) not null,
role_name varchar(128) not null,
primary key(role_id))


Db2

CREATE TABLE ステートメント:

create table category_custom_roles(role_id varchar(32) not null,
role_name varchar(128) not null,
primary key(role_id)) ORGANIZE by row

glossary_custom_relationship_def 表

この表には、カスタム関係定義に関する情報が含まれています。

この表には、以下の列があります。

  • cr_definition_id -カスタム・リレーションシップ定義の ID。
  • artifact_id -カスタム・リレーションシップ定義の ID。
  • name -カスタム・リレーションシップ定義の名前。
  • created_on -カスタム・リレーションシップ定義の作成日。
  • created_by -カスタム関係定義を作成した個人。
  • modified_on -カスタム・リレーションシップ定義の変更日。
  • modified_by -カスタム関係定義を変更した個人。
  • system_id -カスタム関係定義が作成されるシステム ID。
  • type -カスタム関係定義のタイプ。
  • reverse_name -カスタム関係定義の逆の関係名。
  • description -カスタム・リレーションシップ定義の説明。
  • read_only -カスタム関係定義が読み取り専用かどうかを指定します。
  • default_value -カスタム関係定義のデフォルト値。
  • multiple_values -カスタム関係定義が複数の値を持つことができるかどうかを指定します。

Postgres

CREATE TABLE ステートメント:

create table glossary_custom_relationship_def(cr_definition_id varchar(128) not null,
artifact_id varchar(128) not null,
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),
system_id varchar(128),
type varchar(128) not null,
reverse_name varchar(256) not null,
description varchar(256),
read_only boolean not null,
default_value text,
multiple_values boolean 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(cr_definition_id))


Db2

CREATE TABLE ステートメント:

create table glossary_custom_relationship_def(cr_definition_id varchar(128) not null,
artifact_id varchar(128) not null,
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),
system_id varchar(128),
type varchar(128) not null,
reverse_name varchar(256) not null,
description varchar(256),
read_only boolean not null,
default_value clob(128),
multiple_values boolean 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(cr_definition_id),
period SYSTEM_TIME (tech_start,
tech_end) ) ORGANIZE by row

glossary_ca_attr_artifact_type_assoc 表

この表には、カスタム属性定義でサポートされる成果物タイプに関する情報が含まれています。

この表には、以下の列があります。

  • ca_definition_id -カスタム属性の定義の ID。
  • artifact_type -カスタム関係定義が適用される成果物タイプ。

Postgres

CREATE TABLE ステートメント:

create table glossary_ca_attr_artifact_type_assoc(ca_definition_id varchar(128) not null,
artifact_type varchar(256) 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(ca_definition_id,
artifact_type))

ALTER TABLE ステートメント:

alter table glossary_ca_attr_artifact_type_assoc add constraint fk_glossary_ca_attr_artifact_type_assoc_glossary_custom_attr_def_1 foreign key (ca_definition_id) references glossary_custom_attr_def(ca_definition_id) on
delete
	cascade on
	update
	no action


Db2

CREATE TABLE ステートメント:

create table glossary_ca_attr_artifact_type_assoc(ca_definition_id varchar(128) not null,
artifact_type varchar(256) 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(ca_definition_id,
artifact_type),
period SYSTEM_TIME (tech_start,
tech_end) ) ORGANIZE by row

ALTER TABLE ステートメント:

ALTER TABLE "BITNT2DBSAVIKASH1".glossary_ca_attr_artifact_type_assoc ADD CONSTRAINT fk_glossary_ca_attr_artifact_type_assoc_glossary_custom_attr_def_1 FOREIGN KEY (ca_definition_id) REFERENCES "BITNT2DBSAVIKASH1".glossary_custom_attr_def(ca_definition_id) ON DELETE CASCADE  ON UPDATE NO ACTION 

glossary_custom_relationship_nodes テーブル

この表には、カスタム関係定義のソース成果物タイプとターゲット成果物タイプに関する情報が含まれます。

この表には、以下の列があります。

  • cr_definition_id -カスタム・リレーションシップ定義の ID。
  • end1_artifact_type -カスタム関係のソース成果物タイプ。
  • end2_artifact_type -カスタム関係のターゲット成果物タイプ。

Postgres

CREATE TABLE ステートメント:

create table glossary_custom_relationship_nodes(cr_definition_id varchar(128) not null,
end1_artifact_type varchar(128) not null,
end2_artifact_type 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(cr_definition_id,
end1_artifact_type,
end2_artifact_type))

ALTER TABLE ステートメント

alter table glossary_custom_relationship_nodes add constraint fk_glossary_custom_relationship_nodes_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


Db2

CREATE TABLE ステートメント:

create table glossary_custom_relationship_nodes(cr_definition_id varchar(128) not null,
end1_artifact_type varchar(128) not null,
end2_artifact_type 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(cr_definition_id,
end1_artifact_type,
end2_artifact_type),
period SYSTEM_TIME (tech_start,
tech_end) ) ORGANIZE by row

ALTER TABLE ステートメント

alter table glossary_custom_relationship_nodes add constraint fk_glossary_custom_relationship_nodes_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

glossary_custom_attr_def 表

この表には、カスタム属性定義に関する情報が含まれます。

この表には、以下の列があります。

  • ca_definition_id -カスタム属性の定義の ID。
  • global_id -カスタム属性の定義のグローバル ID。
  • name -カスタム属性の定義の名前。
  • created_on -カスタム属性の定義の作成日。
  • created_by -カスタム属性定義を作成したユーザー。
  • modified_on -カスタム属性の定義の変更日。
  • modified_by -カスタム属性定義を変更したユーザー。
  • system_id -カスタム属性定義が作成されるシステム。
  • type -カスタム属性定義のタイプ。
  • read_only -カスタム属性定義が読み取り専用かどうかを指定します。
  • default_value -カスタム属性定義のデフォルト値。
  • multiple_values -カスタム属性定義が複数の値を持つことができるかどうかを指定します。

Postgres

CREATE TABLE ステートメント:

create table glossary_custom_attr_def(ca_definition_id varchar(128) not null,
global_id varchar(256) not null,
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),
system_id varchar(128),
type varchar(128) not null,
read_only boolean not null,
default_value text,
multiple_values boolean 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(ca_definition_id))


Db2

CREATE TABLE ステートメント:

create table glossary_custom_attr_def(ca_definition_id varchar(128) not null,
global_id varchar(256) not null,
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),
system_id varchar(128),
type varchar(128) not null,
read_only boolean not null,
default_value clob,
multiple_values boolean 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(ca_definition_id),
period SYSTEM_TIME (tech_start,
tech_end) ) ORGANIZE by row

glossary_ca_enum_list 表

この表には、ENUM タイプのカスタム属性定義に関する情報が含まれています。

この表には、以下の列があります。

  • ca_definition_id -enum 型のカスタム属性定義の ID。
  • value -enum タイプのカスタム属性定義の値。
  • description -カスタム属性の定義の説明。

Postgres

CREATE TABLE ステートメント:

create table glossary_ca_enum_list(ca_definition_id varchar(128) not null,
value varchar(128) not null,
description 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(ca_definition_id,
value))

ALTER TABLE ステートメント:

alter table "BITNT2DBSAVIKASH1".glossary_ca_enum_list add constraint fk_glossary_ca_enum_list_glossary_custom_attr_def_2 foreign key (ca_definition_id) references "BITNT2DBSAVIKASH1".glossary_custom_attr_def(ca_definition_id) on
delete
	cascade on
	update
	no action


Db2

CREATE TABLE ステートメント:

create table glossary_ca_enum_list(ca_definition_id varchar(128) not null,
value varchar(128) not null,
description 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(ca_definition_id,
value),
period SYSTEM_TIME (tech_start,
tech_end) ) ORGANIZE by row

ALTER TABLE ステートメント:

alter table glossary_ca_enum_list add constraint fk_glossary_ca_enum_list_glossary_custom_attr_def_2 foreign key (ca_definition_id) references glossary_custom_attr_def(ca_definition_id) on
delete
	cascade on
	update
	no action

governance_artifact_custom_attr_values 表

この表には、カスタム属性値に関する情報が含まれます。

この表には、以下の列があります。

  • artifact_id -カスタム・リレーションシップ定義の ID。
  • ca_definition_id -カスタム属性の定義の ID。
  • value_id -カスタム属性の値の ID。
  • text_value -カスタム属性のテキスト値。
  • num_value -カスタム属性の数値です。
  • date_value -カスタム属性の日付値。
  • value_type - カスタムプロパティ値のタイプ。

Postgres

CREATE TABLE ステートメント:

CREATE TABLE governance_artifact_custom_attr_values(
  artifact_id varchar(128) NOT NULL,ca_definition_id varchar(128) NOT NULL,
  value_id varchar(128) NOT NULL,text_value text,num_value double precision,
  date_value timestamp(6),value_type varchar(16),
  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,ca_definition_id,value_id))

ALTER TABLE ステートメント:

alter table governance_artifact_custom_attr_values add constraint fk_governance_artifact_custom_attr_values_glossary_custom_attr_def_12 foreign key (ca_definition_id) references glossary_custom_attr_def(ca_definition_id) on
delete
	cascade on
	update
	no action


Db2

CREATE TABLE ステートメント:

CREATE TABLE governance_artifact_custom_attr_values(
  artifact_id varchar(128) NOT NULL,ca_definition_id
  varchar(128) NOT NULL,value_id varchar(128) NOT NULL,
  text_value text,num_value double precision,
  date_value timestamp(6),value_type varchar(16),
  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,ca_definition_id,value_id))

ALTER TABLE ステートメント:

alter table governance_artifact_custom_attr_values add constraint fk_governance_artifact_custom_attr_values_glossary_custom_attr_def_12 foreign key (ca_definition_id) references glossary_custom_attr_def(ca_definition_id) on
delete
	cascade on
	update
	no action

asset_custom_properties テーブル

この表には、以下の列があります。

  • property_id -カスタム・プロパティーの ID。
  • group_id -プロパティーが定義されているグループ・タイプの ID。
  • property_type -カスタム・プロパティーのタイプを定義します。
  • property_is_array -プロパティーに複数の値があるかどうかを定義します。
  • property_name -` 資産のカスタム・プロパティー名。
  • description -資産のカスタム・プロパティーの説明。
  • property_group_name -アセット・カスタム・プロパティーのグループ名。
  • is_column_property -列プロパティーが設定されていることを示します。

Postgres

CREATE TABLE ステートメント:

CREATE TABLE asset_custom_properties (
	property_id varchar(256) NOT NULL,
	property_group_id varchar(256) NOT NULL,
	property_type varchar(128) NOT NULL,
	property_name varchar(256) NOT NULL,
	property_group_name varchar(256) NOT NULL,
	property_is_array numeric(1) NOT NULL,
	description varchar(256) NULL,
	is_column_property numeric(1) NULL,
	tech_start timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP,
	tech_end timestamp(6) NOT NULL DEFAULT to_timestamp('9999-12-30'::text, 'YYYY-MM-DD'::text),
	ts_id timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP,
	CONSTRAINT asset_custom_properties_is_column_property_check CHECK ((is_column_property = ANY (ARRAY[(0)::numeric, (1)::numeric]))),
	CONSTRAINT asset_custom_properties_pkey PRIMARY KEY (property_id, property_group_id),
	CONSTRAINT asset_custom_properties_property_is_array_check CHECK ((property_is_array = ANY (ARRAY[(0)::numeric, (1)::numeric])))
);

ALTER TABLE ステートメント:

ALTER TABLE IF EXISTS  asset_custom_properties
    OWNER to postgres;


Db2

CREATE TABLE ステートメント:

CREATE TABLE asset_custom_properties(property_id varchar(256) NOT NULL,
property_group_id varchar(256) NOT NULL,
property_type varchar(128) NOT NULL,
property_name varchar(256) NOT NULL,
property_group_name varchar(256) NOT NULL,
property_is_array decimal(1) CHECK (property_is_array IN (0, 1)) NOT NULL,
description varchar(256),
is_column_property decimal(1) CHECK (is_column_property IN (0, 1)), 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(property_id,
property_group_id),
PERIOD SYSTEM_TIME (tech_start,
tech_end) )

ALTER TABLE ステートメント:

ALTER TABLE IF EXISTS  asset_custom_properties
    OWNER to postgres;

asset_type_custom_properties テーブル

この表には、以下の列があります。

  • property_id -カスタム・プロパティーの ID。
  • group_id -その下にプロパティーが定義されているグループ・タイプの ID。
  • asset_type -カスタム・プロパティーが定義されている資産のタイプ。

Postgres

CREATE TABLE ステートメント:

CREATE TABLE IF NOT EXISTS asset_type_custom_properties (
  property_id character varying(256) COLLATE pg_catalog.default NOT NULL,
  property_group_id character varying(256) COLLATE pg_catalog.default NOT NULL,
  asset_type character varying(128) COLLATE pg_catalog.default NOT NULL,
  tech_start timestamp(6) without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
  tech_end timestamp(6) without time zone NOT NULL DEFAULT to_timestamp('9999-12-30' :: text, 'YYYY-MM-DD' :: text),
  ts_id timestamp(6) without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
  CONSTRAINT asset_type_custom_properties_pkey PRIMARY KEY (property_id, property_group_id, asset_type),
  CONSTRAINT fk_asset_type_custom_properties_asset_custom_properties_1 FOREIGN KEY (property_id, property_group_id) REFERENCES asset_custom_properties (property_id, property_group_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE CASCADE
)

ALTER TABLE ステートメント:

ALTER TABLE IF EXISTS  asset_type_custom_properties
    OWNER to postgres;


Db2

CREATE TABLE ステートメント:

CREATE TABLE ASSET_TYPE_CUSTOM_PROPERTIES (
  PROPERTY_ID VARCHAR(256 OCTETS) NOT NULL,
  PROPERTY_GROUP_ID VARCHAR(256 OCTETS) NOT NULL,
  ASSET_TYPE VARCHAR(128 OCTETS) 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,
  PERIOD SYSTEM_TIME (TECH_START, TECH_END)
) IN USERSPACE1 ORGANIZE BY ROW;

ALTER TABLE ステートメント:

ALTER TABLE
  ASSET_TYPE_CUSTOM_PROPERTIES
ADD
  PRIMARY KEY (
    PROPERTY_ID,
    PROPERTY_GROUP_ID,
    ASSET_TYPE
  ) ENFORCED;
ALTER TABLE
  ASSET_TYPE_CUSTOM_PROPERTIES
ADD
  CONSTRAINT FK_ASSET_TYPE_CUSTOM_PROPERTIES_ASSET_CUSTOM_PROPERTIES_1 FOREIGN KEY (PROPERTY_ID, PROPERTY_GROUP_ID) REFERENCES ASSET_CUSTOM_PROPERTIES (PROPERTY_ID, PROPERTY_GROUP_ID) ON DELETE CASCADE ON UPDATE NO ACTION ENFORCED ENABLE QUERY OPTIMIZATION;

asset_prop_enum_list 表

タイプ enumerationのカスタム・プロパティー。

この表には、以下の列があります。

  • property_id -カスタム・プロパティーの ID。
  • group_id -その下にプロパティーが定義されているグループ・タイプの ID。
  • value -カスタム・プロパティーに割り当てられた値。
  • description - enum プロパティーの説明です。

Postgres

CREATE TABLE ステートメント:

CREATE TABLE IF NOT EXISTS asset_prop_enum_list (
  property_id character varying(128) COLLATE pg_catalog.default NOT NULL,
  property_group_id character varying(256) COLLATE pg_catalog.default NOT NULL,
  value character varying(128) COLLATE pg_catalog.default NOT NULL,
  description character varying(256) COLLATE pg_catalog.default,
  tech_start timestamp(6) without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
  tech_end timestamp(6) without time zone NOT NULL DEFAULT to_timestamp('9999-12-30' :: text, 'YYYY-MM-DD' :: text),
  ts_id timestamp(6) without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
  CONSTRAINT asset_prop_enum_list_pkey PRIMARY KEY (property_id, property_group_id, value),
  CONSTRAINT fk_asset_prop_enum_list_asset_custom_properties_2 FOREIGN KEY (property_id, property_group_id) REFERENCES asset_custom_properties (property_id, property_group_id) MATCH SIMPLE ON UPDATE NO ACTION ON DELETE CASCADE
)

ALTER TABLE ステートメント:

ALTER TABLE IF EXISTS   asset_prop_enum_list
    OWNER to postgres;


Db2

CREATE TABLE ステートメント:

CREATE TABLE ASSET_PROP_ENUM_LIST (
  PROPERTY_ID VARCHAR(128 OCTETS) NOT NULL,
  PROPERTY_GROUP_ID VARCHAR(256 OCTETS) NOT NULL,
  VALUE VARCHAR(128 OCTETS) NOT NULL,
  DESCRIPTION VARCHAR(256 OCTETS),
  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,
  PERIOD SYSTEM_TIME (TECH_START, TECH_END)
) IN USERSPACE1 ORGANIZE BY ROW;

ALTER TABLE ステートメント:

ALTER TABLE
  ASSET_PROP_ENUM_LIST
ADD
  PRIMARY KEY (PROPERTY_ID, PROPERTY_GROUP_ID, VALUE) ENFORCED;
ALTER TABLE
  ASSET_PROP_ENUM_LIST
ADD
  CONSTRAINT FK_ASSET_PROP_ENUM_LIST_ASSET_CUSTOM_PROPERTIES_2 FOREIGN KEY (PROPERTY_ID, PROPERTY_GROUP_ID) REFERENCES ASSET_CUSTOM_PROPERTIES (PROPERTY_ID, PROPERTY_GROUP_ID) ON DELETE CASCADE ON UPDATE NO ACTION ENFORCED ENABLE QUERY OPTIMIZATION;

asset_custom_prop_values テーブル

この表には、以下の列があります。

  • container_id -カタログまたはプロジェクトの ID を指定します。
  • asset_id -カスタム・プロパティーが関連付けられているアセットの ID。
  • property_id -カスタム・プロパティーの ID。
  • property_group_id -その下にプロパティーが定義されているグループの ID。
  • asset_type -カスタム・プロパティーが適用される資産のタイプ。
  • value_id -特定のカスタム・プロパティーの値 ID。
  • property_text_value - text カスタム・プロパティーの値。
  • property_num_value - number カスタム・プロパティーの値。
  • property_date_value - date カスタム・プロパティーの値。
  • property_value_type -値のタイプ (ストリング、数値、日付、ユーザー、グループ)。

Postgres

CREATE TABLE ステートメント:

CREATE TABLE asset_custom_prop_values(
  container_id varchar(36) NOT NULL,
  asset_id varchar(128) NOT NULL,
  property_id varchar(256) NOT NULL,
  property_group_id varchar(256) NOT NULL,
  value_id varchar(256) NOT NULL,
  asset_type varchar(256) NOT NULL,
  property_text_value text,
  property_num_value double precision,
  property_date_value timestamp(6),
  property_value_type varchar(16),
  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(
    container_id, asset_id, property_id,
    property_group_id, value_id, asset_type
  )
)

ALTER TABLE ステートメント:

ALTER TABLE IF EXISTS asset_custom_prop_values
OWNER to postgres;


Db2

CREATE TABLE ステートメント:

CREATE TABLE asset_custom_prop_values(
  container_id varchar(36) NOT NULL,
  asset_id varchar(128) NOT NULL,
  property_id varchar(256) NOT NULL,
  property_group_id varchar(256) NOT NULL,
  value_id varchar(256) NOT NULL,
  asset_type varchar(256) NOT NULL,
  property_text_value text,
  property_num_value double precision,
  property_date_value timestamp(6),
  property_value_type varchar(16),
  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(
    container_id, asset_id, property_id,
    property_group_id, value_id, asset_type
  )
)

ALTER TABLE ステートメント:

ALTER TABLE
  ASSET_CUSTOM_PROP_VALUES
ADD
  PRIMARY KEY (
    CONTAINER_ID,
    ASSET_ID,
    PROPERTY_ID,
    PROPERTY_GROUP_ID,
    VALUE_ID,
    ASSET_TYPE
  ) ENFORCED;
ALTER TABLE
  ASSET_CUSTOM_PROP_VALUES
ADD
  CONSTRAINT FK_ASSET_CUSTOM_PROP_VALUES_ASSET_TYPE_CUSTOM_PROPERTIES_2 FOREIGN KEY (
    PROPERTY_ID,
    PROPERTY_GROUP_ID,
    ASSET_TYPE
  ) REFERENCES ASSET_TYPE_CUSTOM_PROPERTIES (
    PROPERTY_ID,
    PROPERTY_GROUP_ID,
    ASSET_TYPE
  ) ON DELETE CASCADE ON UPDATE NO ACTION ENFORCED ENABLE QUERY OPTIMIZATION;
ALTER TABLE
  ASSET_CUSTOM_PROP_VALUES
ADD
  CONSTRAINT FK_ASSET_CUSTOM_PROP_VALUES_CONTAINER_ASSETS_1 FOREIGN KEY (CONTAINER_ID, ASSET_ID) REFERENCES CONTAINER_ASSETS (CONTAINER_ID, ASSET_ID) ON DELETE CASCADE ON UPDATE NO ACTION ENFORCED ENABLE QUERY OPTIMIZATION;

もっと見る

親トピック: レポート・テーブル

生成 AI の検索と回答
これらの回答は、製品資料の内容に基づいて、 watsonx.ai のラージ言語モデルによって生成されます。 詳細