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

Table: tj_metadonnee_loc_aut_loa

 

 

Schema

public

 

Owner

phyto

 

Tablespace

(default)

 

Descriptions

Table permettant l'association d'une localisation géographique avec une information complémentaire. Elle contient les valeurs et informations temporelles des métadonnées.

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

loa_loc_id

integer

 

 

 

Identifiant de la localisation concernée par la métadonnée

loa_aut_id

integer

 

 

 

Idenifiant de la métadonnée (Autreinfo) relevée pour la localisation

 

 

loa_valeur

varchar(128)

 

 

 

 

Valeur de la métadonnée.

 

loa_date

date

 

 

 

Date applicable à la métadonnée.

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_aut_loa

loa_aut_id

public.tr_autresinfos_aut

aut_id

No Action

No Action

 

Immediate

 

c_fk_loc_loa

loa_loc_id

public.t_localisation_loc

loc_id

Cascade

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table tj_metadonnee_loc_aut_loa

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

tj_metadonnee_loc_aut_loa_pkey

btree

 

loa_loc_id, loa_aut_id, loa_date

 

 

Triggers

There are no triggers for table tj_metadonnee_loc_aut_loa

 

Rules

There are no rules for table tj_metadonnee_loc_aut_loa

 

Policies

There are no policies for table tj_metadonnee_loc_aut_loa

 

Referenced

There are no tables referenced by table tj_metadonnee_loc_aut_loa

 

Properties

Property

Value

Inherited From

 

Rows

1621

Pages

11

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tj_metadonnee_loc_aut_loa (
 loa_loc_id INTEGER NOT NULL,
 loa_aut_id INTEGER NOT NULL,
 loa_valeur VARCHAR(128),
 loa_date DATE NOT NULL,
 CONSTRAINT tj_metadonnee_loc_aut_loa_pkey PRIMARY KEY(loa_loc_id, loa_aut_id, loa_date),
 CONSTRAINT c_fk_aut_loa FOREIGN KEY (loa_aut_id)
   REFERENCES public.tr_autresinfos_aut(aut_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT c_fk_loc_loa FOREIGN KEY (loa_loc_id)
   REFERENCES public.t_localisation_loc(loc_id)
   ON DELETE CASCADE
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.tj_metadonnee_loc_aut_loa
IS 'Table permettant l''association d''une localisation géographique avec une information complémentaire. Elle contient les valeurs et informations temporelles des métadonnées.';

COMMENT ON COLUMN public.tj_metadonnee_loc_aut_loa.loa_loc_id
IS 'Identifiant de la localisation concernée par la métadonnée';

COMMENT ON COLUMN public.tj_metadonnee_loc_aut_loa.loa_aut_id
IS 'Idenifiant de la métadonnée (Autreinfo) relevée pour la localisation';

COMMENT ON COLUMN public.tj_metadonnee_loc_aut_loa.loa_valeur
IS 'Valeur de la métadonnée.';

COMMENT ON COLUMN public.tj_metadonnee_loc_aut_loa.loa_date
IS 'Date applicable à la métadonnée.';

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