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

Table: tr_strate_nom_str

 

 

Schema

public

 

Owner

croissance

 

Tablespace

(default)

 

Descriptions

Table des noms génériques de strates

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

str_id

serial

 

nextval('tr_strate_nom_str_str_id_seq'::regclass)

identifiant numérique automatique de la strate

 

 

str_nom

varchar(50)

 

 

Nom de la strate

 

 

str_abrege

varchar(7)

 

 

 

Abrégé usuel de la strate. Utilisé notamment sur les relevés floristiques (a = arbustive basse). Cette valeur pourra être surchargée dans la définition propre à chaque étude.

 

Foreign Keys

There are no foreign keys for table tr_strate_nom_str

 

Check Constraints

There are no check constraints for table tr_strate_nom_str

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

c_uni_abrege_str

btree

 

str_abrege

 

Unicité de l'abrégé d'une strate

c_uni_nom_str

btree

 

str_nom

 

Unicité du nom d'une strate

t_strate_str_pkey

btree

 

str_id

 

 

Triggers

There are no triggers for table tr_strate_nom_str

 

Rules

There are no rules for table tr_strate_nom_str

 

Policies

There are no policies for table tr_strate_nom_str

 

Referenced

Table

Schema

Foreign Key

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

tj_strate_definition_etu_str_std

public

c_fk_str_std

std_str_id

public.tr_strate_nom_str

str_id

Cascade

No Action

 

Immediate

Une définition concerne une et une seule strate

tj_strate_definition_etu_str_std

public

c_fk_str_std_standard

std_str_id_standard

public.tr_strate_nom_str

str_id

Cascade

No Action

 

Immediate

Une strate définie peut faire référence à une strate standard

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tr_strate_nom_str (
 str_id SERIAL,
 str_nom VARCHAR(50) NOT NULL,
 str_abrege VARCHAR(7),
 CONSTRAINT c_uni_abrege_str UNIQUE(str_abrege),
 CONSTRAINT c_uni_nom_str UNIQUE(str_nom),
 CONSTRAINT t_strate_str_pkey PRIMARY KEY(str_id)
) ;

COMMENT ON TABLE public.tr_strate_nom_str
IS 'Table des noms génériques de strates';

COMMENT ON COLUMN public.tr_strate_nom_str.str_id
IS 'identifiant numérique automatique de la strate';

COMMENT ON COLUMN public.tr_strate_nom_str.str_nom
IS 'Nom de la strate';

COMMENT ON COLUMN public.tr_strate_nom_str.str_abrege
IS 'Abrégé usuel de la strate. Utilisé notamment sur les relevés floristiques (a = arbustive basse). Cette valeur pourra être surchargée dans la définition propre à chaque étude.';

COMMENT ON CONSTRAINT c_uni_abrege_str ON public.tr_strate_nom_str
IS 'Unicité de l''abrégé d''une strate';

COMMENT ON CONSTRAINT c_uni_nom_str ON public.tr_strate_nom_str
IS 'Unicité du nom d''une strate';

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