Vérifiez les instructions Postgres, Db2 pour les tables associées aux importations et aux enrichissements de métadonnées.
Domaine | Nom de la table | Descriptif |
---|---|---|
Importations et enrichissements de métadonnées | importations_métadonnées | Metadata import . |
Importations et enrichissements de métadonnées | exécutions d'importation de métadonnées | Heure planifiée du travail d'importation de métadonnées. |
Importations et enrichissements de métadonnées | enrichissements de métadonnées | Informations sur les enrichissements de métadonnées. |
Table metadata_import
Cette table contient des informations sur l'importation de métadonnées.
Cette table comporte les colonnes suivantes:
metadata_import_id
-Identificateur de l'importation de métadonnées.container_id
-Identificateur du projet.metadata_import_name
-Nom de l'importation de métadonnées.target_container_id
-Identificateur du projet cible.connection_id
-Identificateur de connexion sur lequel une importation est créée.
Postgres
Instruction 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))
Instruction 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
Instruction 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
Instruction 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
Table metadata_import_exécutions
Ce tableau contient des informations sur le travail d'importation de métadonnées.
Cette table comporte les colonnes suivantes:
metadata_import_id
-Identificateur de l'importation de métadonnées.container_id
-Identificateur du projet.job_run_id
-Identificateur de l'exécution de travail.invoked_by
-ID de la personne qui l'a démarré.is_scheduled_run
-Heure planifiée du travail pour le travail d'importation de métadonnées.start_time
-Heure de début du travail pour le travail d'importation de métadonnées.end_time
-Heure de fin du travail pour le travail d'importation de métadonnées.state
-Etat du travail d'importation de métadonnées.count_discovered
-Nombre d'actifs reconnus.count_discovered_with_children
-Nombre d'actifs avec des enfants reconnus.count_submitted
-Nombre d'actifs reconnus.count_succeeded
-Nombre d'actifs importés avec succès.count_succedded_with_children
-Nombre d'actifs avec des enfants qui ont été importés avec succès.count_new_assets
-Nombre de nouveaux actifs.count_updated_assets
-Nombre d'actifs mis à jour.count_deleted_assets
-Nombre d'actifs supprimés.
Postgres
Instruction 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))
Instructions 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
Instruction 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
Instructions 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
Table metadata_enrichments
Ce tableau contient des informations sur les enrichissements de métadonnées.
Cette table comporte les colonnes suivantes:
metadata_enrichment_id
-Identificateur de l'enrichissement de métadonnées.container_id
-Identificateur du projet.metadata_enrichment_name
-Nom de l'enrichissement de métadonnées.
Postgres
Instruction 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))
Instruction 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
Instruction 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
Instruction 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
En savoir plus
Rubrique parent: Tables de génération de rapports