db_toff on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Table: tj_measure_characteristic_mch

 

 

Schema

public

 

Owner

postgres

 

Tablespace

(default)

 

Descriptions

A measure environment can have from 0 to n characteristic measures / Un environnement de mesure fait l'objet de 0 à n mesures de caractéristiques

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

mch_met_id

integer

 

 

 

Automatic ID of the related metadata set / Identifiant automatique du groupe de métadonnées associé

mch_char_id

integer

 

 

 

Automatic ID of the related characteristic / Identifiant automatique de la caractéristique associée

 

 

mch_value

varchar(32)

 

 

 

Characteristic measure value / Valeur de la mesure de la caractéristique

 

 

mch_date_measure

date

 

 

 

 

Characteristic measure date (DD/MM/YYYY) /Date à laquelle la mesure de caractéristique a été réalisée (JJ/MM/AAAA)

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_met_car

mch_char_id

public.tr_characteristic_char

char_id

No Action

No Action

 

Immediate

Characteristic measure is related to only one characteristic / La mesure de caractéristique est associée à une et un seule caractéristique

c_fk_met_mch

mch_met_id

public.t_set_metadata_measure_met

met_id

No Action

No Action

 

Immediate

Characteristic measure is related to only one metadata set / La mesure de caractéristique est associée à un et un seul groupe de métadonnées

 

Check Constraints

There are no check constraints for table tj_measure_characteristic_mch

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

tj_measure_characteristic_mch_pkey

btree

 

mch_met_id, mch_char_id

 

x_btr_char_mch

btree

 

mch_char_id

 

 

Foreign key index linking a characteristic measure to a characteristic / Index sur la clé étrangère rattachant une mesure de caractéristique à une caractéristique

x_btr_met_mch

btree

 

mch_met_id

 

 

Foreign key index linking a characteristic measure to a group of metadata / Index sur la clé étrangère rattachant une mesure de caractéristique à un groupe de métadonnées

 

Triggers

There are no triggers for table tj_measure_characteristic_mch

 

Rules

There are no rules for table tj_measure_characteristic_mch

 

Policies

There are no policies for table tj_measure_characteristic_mch

 

Referenced

There are no tables referenced by table tj_measure_characteristic_mch

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tj_measure_characteristic_mch (
 mch_met_id INTEGER NOT NULL,
 mch_char_id INTEGER NOT NULL,
 mch_value VARCHAR(32) NOT NULL,
 mch_date_measure DATE,
 CONSTRAINT tj_measure_characteristic_mch_pkey PRIMARY KEY(mch_met_id, mch_char_id),
 CONSTRAINT c_fk_met_car FOREIGN KEY (mch_char_id)
   REFERENCES public.tr_characteristic_char(char_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT c_fk_met_mch FOREIGN KEY (mch_met_id)
   REFERENCES public.t_set_metadata_measure_met(met_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

)
WITH (oids = false);

COMMENT ON TABLE public.tj_measure_characteristic_mch
IS 'A measure environment can have from 0 to n characteristic measures / Un environnement de mesure fait l''objet de 0 à n mesures de caractéristiques';

COMMENT ON COLUMN public.tj_measure_characteristic_mch.mch_met_id
IS 'Automatic ID of the related metadata set / Identifiant automatique du groupe de métadonnées associé';

COMMENT ON COLUMN public.tj_measure_characteristic_mch.mch_char_id
IS ' Automatic ID of the related characteristic / Identifiant automatique de la caractéristique associée';

COMMENT ON COLUMN public.tj_measure_characteristic_mch.mch_value
IS 'Characteristic measure value / Valeur de la mesure de la caractéristique';

COMMENT ON COLUMN public.tj_measure_characteristic_mch.mch_date_measure
IS 'Characteristic measure date (DD/MM/YYYY) /Date à laquelle la mesure de caractéristique a été réalisée (JJ/MM/AAAA)';

COMMENT ON CONSTRAINT c_fk_met_car ON public.tj_measure_characteristic_mch
IS 'Characteristic measure is related to only one characteristic / La mesure de caractéristique est associée à une et un seule caractéristique';

COMMENT ON CONSTRAINT c_fk_met_mch ON public.tj_measure_characteristic_mch
IS 'Characteristic measure is related to only one metadata set / La mesure de caractéristique est associée à un et un seul groupe de métadonnées';

CREATE INDEX x_btr_char_mch ON public.tj_measure_characteristic_mch
 USING btree (mch_char_id);

COMMENT ON INDEX public.x_btr_char_mch
IS 'Foreign key index linking a characteristic measure to a characteristic / Index sur la clé étrangère rattachant une mesure de caractéristique à une caractéristique';

CREATE INDEX x_btr_met_mch ON public.tj_measure_characteristic_mch
 USING btree (mch_met_id);

COMMENT ON INDEX public.x_btr_met_mch
IS 'Foreign key index linking a characteristic measure to a group of metadata / Index sur la clé étrangère rattachant une mesure de caractéristique à un groupe de métadonnées';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 19/06/2019 10:17
Previous topic Chapter index Next topic