pggeodb.nancy.inra.fr/db_wood_db - db_wood_db on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Table: tj_rgp_mron_gmr

 

 

Schema

public

 

Owner

postgres

 

Tablespace

(default)

 

Descriptions

Table de jointure associant une mesure de rondelle à un regroupement.

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

gmr_mron_id

integer

 

 

 

Identifiant unique numérique de la mesure de rondelle associée

gmr_rgp_id

integer

 

 

 

Identifiant automatique numérique du regroupement associé

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_mron_gmr

gmr_mron_id

public.t_mesure_mron

mron_id

No Action

No Action

 

Immediate

Le champ gmr_mron_id correspond obligatoirement à une mesure existante

c_fk_rgp_gmr

gmr_rgp_id

public.t_regroupement_rgp

rgp_id

No Action

No Action

 

Immediate

Le champ gmr_rgp_id correspond obligatoirement à un regroupememnt existant

 

Check Constraints

There are no check constraints for table tj_rgp_mron_gmr

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

tj_rgp_mron_gmr_pkey

btree

 

gmr_mron_id, gmr_rgp_id

 

x_btr_mron_gmr

btree

 

gmr_mron_id

 

 

Index de clé étrangère pour accélérer les mises à jour / suppression

x_btr_rgp_gmr

btree

 

gmr_rgp_id

 

 

Index de clé étrangère pour accélérer les mises à jour / suppression

 

Triggers

There are no triggers for table tj_rgp_mron_gmr

 

Rules

There are no rules for table tj_rgp_mron_gmr

 

Policies

There are no policies for table tj_rgp_mron_gmr

 

Referenced

There are no tables referenced by table tj_rgp_mron_gmr

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tj_rgp_mron_gmr (
 gmr_mron_id INTEGER NOT NULL,
 gmr_rgp_id INTEGER NOT NULL,
 CONSTRAINT tj_rgp_mron_gmr_pkey PRIMARY KEY(gmr_mron_id, gmr_rgp_id),
 CONSTRAINT c_fk_mron_gmr FOREIGN KEY (gmr_mron_id)
   REFERENCES public.t_mesure_mron(mron_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT c_fk_rgp_gmr FOREIGN KEY (gmr_rgp_id)
   REFERENCES public.t_regroupement_rgp(rgp_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.tj_rgp_mron_gmr
IS 'Table de jointure associant une mesure de rondelle à un regroupement.';

COMMENT ON COLUMN public.tj_rgp_mron_gmr.gmr_mron_id
IS 'Identifiant unique numérique de la mesure de rondelle associée';

COMMENT ON COLUMN public.tj_rgp_mron_gmr.gmr_rgp_id
IS 'Identifiant automatique numérique du regroupement associé';

COMMENT ON CONSTRAINT c_fk_mron_gmr ON public.tj_rgp_mron_gmr
IS 'Le champ gmr_mron_id correspond obligatoirement à une mesure existante';

COMMENT ON CONSTRAINT c_fk_rgp_gmr ON public.tj_rgp_mron_gmr
IS 'Le champ gmr_rgp_id correspond obligatoirement à un regroupememnt existant';

CREATE INDEX x_btr_mron_gmr ON public.tj_rgp_mron_gmr
 USING btree (gmr_mron_id);

COMMENT ON INDEX public.x_btr_mron_gmr
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';

CREATE INDEX x_btr_rgp_gmr ON public.tj_rgp_mron_gmr
 USING btree (gmr_rgp_id);

COMMENT ON INDEX public.x_btr_rgp_gmr
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23
Previous topic Chapter index Next topic