Schema
public
Owner
croissance
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 |
---|---|---|---|---|---|---|---|---|
loa_aut_id |
aut_id |
No Action |
No Action |
|
Immediate |
Une autre information ou métadonnée peut être associée à une ou plusieurs localisations |
||
loa_loc_id |
loc_id |
Cascade |
No Action |
|
Immediate |
Une localisation peut faire l'objet d'une ou plusieurs métédonnées ou autre information |
Check Constraints
There are no check constraints for table tj_metadonnee_loc_aut_loa
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
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 |
0 |
Pages |
0 |
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
)
WITH (oids = false);
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.';
COMMENT ON CONSTRAINT c_fk_aut_loa ON public.tj_metadonnee_loc_aut_loa
IS 'Une autre information ou métadonnée peut être associée à une ou plusieurs localisations';
COMMENT ON CONSTRAINT c_fk_loc_loa ON public.tj_metadonnee_loc_aut_loa
IS 'Une localisation peut faire l''objet d''une ou plusieurs métédonnées ou autre information';
This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37 |