0 / 0
Volver a la versión inglesa de la documentación
Tablas de informes de personalizaciones
Última actualización: 13 dic 2024
Tablas de informes de personalizaciones

Compruebe las sentencias Postgres, Db2 para las tablas que contienen roles personalizados, relaciones, atributos, propiedades y otros.

Área temática Nombre de tabla Descripción
Personalizaciones category_custom_roles Los roles de categoría personalizados.
Personalizaciones def_relación_personaliza_glosario Las definiciones de relaciones personalizadas.
Personalizaciones tipo_tipo_acceso_ca_glossary_ca_attr_artifact_assoc Los tipos de artefacto soportados para la definición de atributo personalizado.
Personalizaciones nodos_relaciones_personalizadas_glosario El tipo de artefacto de origen y destino para las definiciones de relaciones personalizadas.
Personalizaciones de_atr_personalizado_glosario Las definiciones de atributos personalizados.
Personalizaciones lista_enumeración_ca_glosario las definiciones de atributos personalizados del tipo ENUM.
Personalizaciones valores_atrib_gobierno_personalizado_atributo Los valores de atributo personalizado.
Personalizaciones propietario_personalizado_activo El grupo de propiedades personalizadas asignado a un tipo de activo y la propiedad bajo ese grupo.
Personalizaciones propietario_personalizado_tipo_activo El tipo de propiedad personalizada y su grupo personalizado asociado.
Personalizaciones lista_enumeración_prop_activo La propiedad personalizada de tipo enumeration.
Personalizaciones asset_custom_prop_values Los valores asignados a las propiedades personalizadas que se definen en el activo.

tabla category_custom_roles

Esta tabla contiene información sobre los roles de categoría personalizados.

Esta tabla tiene las columnas siguientes:

  • role_id -El identificador del rol personalizado de categoría.
  • role_name -El nombre del rol personalizado de categoría.

Postgres

Sentencia CREATE TABLE:

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


Db2

Sentencia 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

tabla glossary_custom_relationship_def

Esta tabla contiene información sobre las definiciones de relaciones personalizadas.

Esta tabla tiene las columnas siguientes:

  • cr_definition_id -El identificador de la definición de relación personalizada.
  • artifact_id -El identificador de la definición de relación personalizada.
  • name -El nombre de la definición de relación personalizada.
  • created_on -La fecha de creación de la definición de relación personalizada.
  • created_by -La persona que ha creado la definición de relación personalizada.
  • modified_on -La fecha de modificación de la definición de relación personalizada.
  • modified_by -La persona que ha modificado la definición de relación personalizada.
  • system_id -Identificador del sistema donde se crea la definición de relación personalizada.
  • type : el tipo de definición de relación personalizada.
  • reverse_name -El nombre de relación inversa de la definición de relación personalizada.
  • description -La descripción de la definición de relación personalizada.
  • read_only -Especifica si la definición de relación personalizada es de sólo lectura o no.
  • default_value -El valor predeterminado de la definición de relación personalizada.
  • multiple_values -Especifica si la definición de relación personalizada puede tener varios valores o no.

Postgres

Sentencia 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

Sentencia 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

tabla glossary_ca_attr_artifact_type_assoc

Esta tabla contiene información sobre los tipos de artefacto soportados para la definición de atributo personalizado.

Esta tabla tiene las columnas siguientes:

  • ca_definition_id -El identificador de la definición de atributo personalizado.
  • artifact_type -El tipo de artefacto para el que es aplicable la definición de relación personalizada.

Postgres

Sentencia 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))

Sentencia 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

Sentencia 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

Sentencia 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 

tabla glossary_custom_relationship_nodes

Esta tabla contiene información sobre el tipo de artefacto de origen y destino para las definiciones de relaciones personalizadas.

Esta tabla tiene las columnas siguientes:

  • cr_definition_id -El identificador de la definición de relación personalizada.
  • end1_artifact_type -El tipo de artefacto de origen de las relaciones personalizadas.
  • end2_artifact_type -El tipo de artefacto de destino de las relaciones personalizadas.

Postgres

Sentencia 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))

Sentencia 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

Sentencia 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

Sentencia 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

tabla glossary_custom_attr_def

Esta tabla contiene información sobre las definiciones de atributos personalizados.

Esta tabla tiene las columnas siguientes:

  • ca_definition_id -El identificador de la definición de atributo personalizado.
  • global_id -Identificador global de la definición de atributo personalizado.
  • name -El nombre de la definición de atributo personalizado.
  • created_on -La fecha de creación de la definición de atributo personalizado.
  • created_by -La persona que ha creado la definición de atributo personalizado.
  • modified_on -La fecha de modificación de la definición de atributo personalizado.
  • modified_by -La persona que ha modificado la definición de atributo personalizado.
  • system_id -El sistema identificado donde se crea la definición de atributo personalizado.
  • type : el tipo de definición de atributo personalizado.
  • read_only -Especifica si la definición de atributo personalizado es de sólo lectura o no.
  • default_value -El valor predeterminado de la definición de atributo personalizado.
  • multiple_values -Especifica si la definición de atributo personalizado puede tener varios valores o no.

Postgres

Sentencia 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

Sentencia 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

tabla glossary_ca_enum_list

Esta tabla contiene información sobre las definiciones de atributos personalizados del tipo ENUM.

Esta tabla tiene las columnas siguientes:

  • ca_definition_id -Identificador de la definición de atributo personalizado de tipo enum.
  • value -El valor de la definición de atributo personalizado de tipo enum.
  • description -La descripción de la definición de atributo personalizado.

Postgres

Sentencia 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))

Sentencia 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

Sentencia 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

Sentencia 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

Tabla gubernamance_artifact_custom_attr_values

Esta tabla contiene información sobre los valores de atributo personalizado.

Esta tabla tiene las columnas siguientes:

  • artifact_id -El identificador de la definición de relación personalizada.
  • ca_definition_id -El identificador de la definición de atributo personalizado.
  • value_id -El identificador del valor de atributo personalizado.
  • text_value -El valor de texto del atributo personalizado.
  • num_value -El valor numérico del atributo personalizado.
  • date_value -El valor de fecha del atributo personalizado.
  • value_type - El tipo de valor de las propiedades personalizadas.

Postgres

Sentencia 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))

Sentencia 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

Sentencia 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))

Sentencia 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

tabla asset_custom_properties

Esta tabla tiene las columnas siguientes:

  • property_id -El identificador de la propiedad personalizada.
  • group_id : el identificador del tipo de grupo que tiene propiedades definidas bajo él.
  • property_type -Define el tipo para la propiedad personalizada.
  • property_is_array -Define si una propiedad tiene varios valores.
  • property_name -` El nombre de la propiedad personalizada del activo.
  • description -La descripción de una propiedad personalizada de activo.
  • property_group_name -El nombre de grupo de una propiedad personalizada de activo.
  • is_column_property -Identificar la propiedad de columna establecida.

Postgres

Sentencia 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])))
);

Sentencia ALTER TABLE:

ALTER TABLE IF EXISTS  asset_custom_properties
    OWNER to postgres;


Db2

Sentencia 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) )

Sentencia ALTER TABLE:

ALTER TABLE IF EXISTS  asset_custom_properties
    OWNER to postgres;

tabla asset_type_custom_properties

Esta tabla tiene las columnas siguientes:

  • property_id -El identificador de la propiedad personalizada.
  • group_id -El identificador del tipo de grupo que tiene la propiedad definida debajo.
  • asset_type : el tipo de activo para el que se define la propiedad personalizada.

Postgres

Sentencia 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
)

Sentencia ALTER TABLE:

ALTER TABLE IF EXISTS  asset_type_custom_properties
    OWNER to postgres;


Db2

Sentencia 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;

Sentencias 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;

tabla asset_prop_enum_list

La propiedad personalizada de tipo enumeration.

Esta tabla tiene las columnas siguientes:

  • property_id -El identificador de la propiedad personalizada.
  • group_id -El identificador del tipo de grupo que tiene la propiedad definida debajo.
  • value -El valor asignado a la propiedad personalizada.
  • description -La descripción de la propiedad enum .

Postgres

Sentencia 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
)

Sentencia ALTER TABLE:

ALTER TABLE IF EXISTS   asset_prop_enum_list
    OWNER to postgres;


Db2

Sentencia 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;

Sentencia 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;

tabla asset_custom_prop_values

Esta tabla tiene las columnas siguientes:

  • container_id - Especifica el identificador del catálogo o proyecto.
  • asset_id -El identificador de un activo con el que está asociada la propiedad personalizada.
  • property_id -El identificador de una propiedad personalizada.
  • property_group_id -El identificador del grupo que tiene una propiedad definida debajo.
  • asset_type -El tipo de activo al que se aplica la propiedad personalizada.
  • value_id -El identificador de valor para una propiedad personalizada determinada.
  • property_text_value -El valor de la propiedad personalizada text .
  • property_num_value -El valor de la propiedad personalizada number .
  • property_date_value -El valor de la propiedad personalizada date .
  • property_value_type -El tipo del valor, es decir, cadena, número, fecha, usuario, grupo.

Postgres

Sentencia 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
  )
)

Sentencia ALTER TABLE:

ALTER TABLE IF EXISTS asset_custom_prop_values
OWNER to postgres;


Db2

Sentencia 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
  )
)

Sentencias 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;

Más información

Tema padre: Tablas de informes

Búsqueda y respuesta de IA generativa
Estas respuestas las genera un modelo de lenguaje grande en watsonx.ai que se basa en el contenido de la documentación del producto. Más información