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

Table: tj_recouvre_std_rfl_rec

 

 

Schema

public

 

Owner

phyto

 

Tablespace

(default)

 

Descriptions

Table associant une strate définie à un relevé floristique pour indiquer le recouvrement

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

rec_std_id

integer

 

 

 

identifiant de la strate définie

rec_rfl_id

integer

 

 

 

identifiant du relevé florsitique

 

 

rec_recouvrement

varchar(20)

 

 

 

valeur du recouvrement (à mettre dans un domaine de valeur par la suite)

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_rfl_rec

rec_rfl_id

public.t_relevefloristique_rfl

rfl_id

Cascade

No Action

 

Immediate

 

c_fk_std_rec

rec_std_id

public.tj_strate_definition_etu_str_std

std_id

No Action

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table tj_recouvre_std_rfl_rec

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

tj_recouvre_str_rfl_rec_pkey

btree

 

rec_std_id, rec_rfl_id

 

 

Triggers

There are no triggers for table tj_recouvre_std_rfl_rec

 

Rules

There are no rules for table tj_recouvre_std_rfl_rec

 

Policies

There are no policies for table tj_recouvre_std_rfl_rec

 

Referenced

There are no tables referenced by table tj_recouvre_std_rfl_rec

 

Properties

Property

Value

Inherited From

 

Rows

8446

Pages

46

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tj_recouvre_std_rfl_rec (
 rec_std_id INTEGER NOT NULL,
 rec_rfl_id INTEGER NOT NULL,
 rec_recouvrement VARCHAR(20) NOT NULL,
 CONSTRAINT tj_recouvre_str_rfl_rec_pkey PRIMARY KEY(rec_std_id, rec_rfl_id),
 CONSTRAINT c_fk_rfl_rec FOREIGN KEY (rec_rfl_id)
   REFERENCES public.t_relevefloristique_rfl(rfl_id)
   ON DELETE CASCADE
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT c_fk_std_rec FOREIGN KEY (rec_std_id)
   REFERENCES public.tj_strate_definition_etu_str_std(std_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.tj_recouvre_std_rfl_rec
IS 'Table associant une strate définie à un relevé floristique pour indiquer le recouvrement';

COMMENT ON COLUMN public.tj_recouvre_std_rfl_rec.rec_std_id
IS 'identifiant de la strate définie';

COMMENT ON COLUMN public.tj_recouvre_std_rfl_rec.rec_rfl_id
IS 'identifiant du relevé florsitique';

COMMENT ON COLUMN public.tj_recouvre_std_rfl_rec.rec_recouvrement
IS 'valeur du recouvrement (à mettre dans un domaine de valeur par la suite)';

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