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

Table: tj_notateur_ope_rfl_not

 

 

Schema

public

 

Owner

phyto

 

Tablespace

(default)

 

Descriptions

Table associant un notateur à un relevé floristique. Un relevé florsistique peut être effectué par plusieurs notateurs.

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

not_ope_id

integer

 

 

 

Identifiant du notateur de l'association

not_rfl_id

integer

 

 

 

Identifiant du relevé floristique de l'association

 

 

not_remarque

varchar(64)

 

 

 

 

Champ permettant d'indiquer une précision sur le notateur du relevé (par exemple pour préciser un rôle de simple observateur)

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_ope_not

not_ope_id

public.tr_operateur_ope

ope_id

No Action

No Action

 

Immediate

Chaque ligne de la table est associée à un et un seul notateur

c_fk_rfl_not

not_rfl_id

public.t_relevefloristique_rfl

rfl_id

Cascade

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table tj_notateur_ope_rfl_not

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

tj_notateur_ope_rfl_not_pkey

btree

 

not_ope_id, not_rfl_id

 

 

Triggers

There are no triggers for table tj_notateur_ope_rfl_not

 

Rules

There are no rules for table tj_notateur_ope_rfl_not

 

Policies

There are no policies for table tj_notateur_ope_rfl_not

 

Referenced

There are no tables referenced by table tj_notateur_ope_rfl_not

 

Properties

Property

Value

Inherited From

 

Rows

9910

Pages

44

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tj_notateur_ope_rfl_not (
 not_ope_id INTEGER NOT NULL,
 not_rfl_id INTEGER NOT NULL,
 not_remarque VARCHAR(64),
 CONSTRAINT tj_notateur_ope_rfl_not_pkey PRIMARY KEY(not_ope_id, not_rfl_id),
 CONSTRAINT c_fk_ope_not FOREIGN KEY (not_ope_id)
   REFERENCES public.tr_operateur_ope(ope_id)
   ON DELETE NO ACTION
   ON
UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT c_fk_rfl_not FOREIGN KEY (not_rfl_id)
   REFERENCES public.t_relevefloristique_rfl(rfl_id)
   ON DELETE CASCADE
   ON
UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.tj_notateur_ope_rfl_not
IS 'Table associant un notateur à un relevé floristique. Un relevé florsistique peut être effectué par plusieurs notateurs.';

COMMENT ON COLUMN public.tj_notateur_ope_rfl_not.not_ope_id
IS 'Identifiant du notateur de l''association';

COMMENT ON COLUMN public.tj_notateur_ope_rfl_not.not_rfl_id
IS 'Identifiant du relevé floristique de l''association';

COMMENT ON COLUMN public.tj_notateur_ope_rfl_not.not_remarque
IS 'Champ permettant d''indiquer une précision sur le notateur du relevé (par exemple pour préciser un rôle de simple observateur)';

COMMENT ON CONSTRAINT c_fk_ope_not ON public.tj_notateur_ope_rfl_not
IS 'Chaque ligne de la table est associée à un et un seul notateur';

This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37
Previous topic Chapter index Next topic