Compruebe las sentencias Postgres, Db2 para las tablas relacionadas con las importaciones y enriquecimientos de metadatos.
Área temática | Nombre de tabla | Descripción |
---|---|---|
Importaciones y enriquecimientos de metadatos | importación_metadatos | Información de Metadata import . |
Importaciones y enriquecimientos de metadatos | metadata_import_executions | Hora planificada del trabajo de importación de metadatos. |
Importaciones y enriquecimientos de metadatos | enriquecimientos de metadatos | Información de enriquecimientos de metadatos. |
tabla metadata_importe
Esta tabla contiene información sobre la importación de metadatos.
Esta tabla tiene las columnas siguientes:
metadata_import_id
-Identificador de la importación de metadatos.container_id
-El identificador del proyecto.metadata_import_name
-El nombre de la importación de metadatos.target_container_id
-El identificador del proyecto de destino.connection_id
-El identificador de conexión en el que se crea una importación.
Postgres
Sentencia CREATE TABLE:
create table metadata_imports(metadata_import_id varchar(128) not null,
container_id varchar(128) not null,
metadata_import_name varchar(256) not null,
target_container_id varchar(128),
connection_id varchar(128),
metadata_enrichment_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(container_id,
metadata_import_id))
Sentencia ALTER TABLE:
alter table metadata_imports add constraint fk_metadata_imports_container_assets_2 foreign key (container_id,
metadata_import_id) references container_assets(container_id,
asset_id) on
delete
cascade on
update
no action
Db2
Sentencia CREATE TABLE:
create table metadata_imports(metadata_import_id varchar(128) not null,
container_id varchar(128) not null,
metadata_import_name varchar(256) not null,
target_container_id varchar(128),
connection_id varchar(128),
metadata_enrichment_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(container_id,
metadata_import_id),
period SYSTEM_TIME (tech_start,
tech_end) ) ORGANIZE by row
Sentencia ALTER TABLE:
alter table metadata_imports add constraint fk_metadata_imports_container_assets_2 foreign key (container_id,
metadata_import_id) references container_assets(container_id,
asset_id) on
delete
cascade on
update
no action
Tabla metadata_import_executions
Esta tabla contiene información sobre el trabajo de importación de metadatos.
Esta tabla tiene las columnas siguientes:
metadata_import_id
-Identificador de la importación de metadatos.container_id
-El identificador del proyecto.job_run_id
-Identificador de la ejecución del trabajo.invoked_by
-El ID de la persona que lo ha iniciado.is_scheduled_run
-La hora planificada del trabajo para el trabajo de importación de metadatos.start_time
-La hora de inicio del trabajo para el trabajo de importación de metadatos.end_time
-La hora de finalización del trabajo para el trabajo de importación de metadatos.state
-El estado del trabajo de importación de metadatos.count_discovered
-El número de activos que se descubren.count_discovered_with_children
-El número de activos con hijos que se descubren.count_submitted
-El número de activos que se descubren.count_succeeded
-El número de activos que se han importado correctamente.count_succedded_with_children
-El número de activos con hijos que se han importado correctamente.count_new_assets
-El número de activos nuevos.count_updated_assets
-El número de activos actualizados.count_deleted_assets
-El número de activos suprimidos.
Postgres
Sentencia CREATE TABLE:
create table metadata_import_executions(metadata_import_id varchar(128) not null,
container_id varchar(36) not null,
job_run_id varchar(128) not null,
invoked_by varchar(128) not null,
is_scheduled_run boolean not null,
start_time timestamp(6) not null,
end_time timestamp(6),
state varchar(32) not null,
count_discovered bigint default 0 not null,
count_discovered_with_children bigint default 0 not null,
count_submitted bigint default 0 not null,
count_succeeded bigint default 0 not null,
count_succedded_with_children bigint default 0 not null,
count_new_assets bigint default 0 not null,
count_updated_assets bigint default 0 not null,
count_deleted_assets bigint default 0 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(container_id,
metadata_import_id,
job_run_id))
Sentencias ALTER TABLE:
alter table metadata_import_executions add constraint fk_metadata_import_executions_metadata_imports_3 foreign key (container_id,
metadata_import_id) references metadata_imports(container_id,
metadata_import_id) on
delete
cascade on
update
no action
alter table metadata_import_executions add constraint fk_metadata_import_executions_container_assets_4 foreign key (container_id,
job_run_id) references container_assets(container_id,
asset_id) on
delete
cascade on
update
no action
Db2
Sentencia CREATE TABLE:
create table metadata_import_executions(metadata_import_id varchar(128) not null,
container_id varchar(36) not null,
job_run_id varchar(128) not null,
invoked_by varchar(128) not null,
is_scheduled_run boolean not null,
start_time timestamp(12) not null,
end_time timestamp(12),
state varchar(32) not null,
count_discovered bigint default 0 not null,
count_discovered_with_children bigint default 0 not null,
count_submitted bigint default 0 not null,
count_succeeded bigint default 0 not null,
count_succedded_with_children bigint default 0 not null,
count_new_assets bigint default 0 not null,
count_updated_assets bigint default 0 not null,
count_deleted_assets bigint default 0 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(container_id,
metadata_import_id,
job_run_id),
period SYSTEM_TIME (tech_start,
tech_end) ) ORGANIZE by row
Sentencias ALTER TABLE:
alter table metadata_import_executions add constraint fk_metadata_import_executions_metadata_imports_3 foreign key (container_id,
metadata_import_id) references metadata_imports(container_id,
metadata_import_id) on
delete
cascade on
update
no action
alter table metadata_import_executions add constraint fk_metadata_import_executions_container_assets_4 foreign key (container_id,
job_run_id) references container_assets(container_id,
asset_id) on
delete
cascade on
update
no action
Tabla metadata_enriquements
Esta tabla contiene información sobre los enriquecimientos de metadatos.
Esta tabla tiene las columnas siguientes:
metadata_enrichment_id
-Identificador para el enriquecimiento de metadatos.container_id
-El identificador del proyecto.metadata_enrichment_name
-El nombre del enriquecimiento de metadatos.
Postgres
Sentencia CREATE TABLE:
create table metadata_enrichments(metadata_enrichment_id varchar(128) not null,
container_id varchar(36) not null,
metadata_enrichment_name 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(container_id,
metadata_enrichment_id))
Sentencia ALTER TABLE:
alter table metadata_enrichments add constraint fk_metadata_enrichments_container_assets_1 foreign key (container_id,
metadata_enrichment_id) references container_assets(container_id,
asset_id) on
delete
cascade on
update
no action
Db2
Sentencia CREATE TABLE:
create table metadata_enrichments(metadata_enrichment_id varchar(128) not null,
container_id varchar(36) not null,
metadata_enrichment_name 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(container_id,
metadata_enrichment_id),
period SYSTEM_TIME (tech_start,
tech_end) ) ORGANIZE by row
Sentencia ALTER TABLE:
alter table metadata_enrichments add constraint fk_metadata_enrichments_container_assets_1 foreign key (container_id,
metadata_enrichment_id) references container_assets(container_id,
asset_id) on
delete
cascade on
update
no action
Más información
Tema padre: Tablas de informes