Schema
Owner
postgres
Tablespace
(default)
Descriptions
Table des geolocalisations. Informations relatives aux geolocalisations (Onglet loc_prf)
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
geo_id |
serial |
|
nextval('tr_geolocalisation_geo_geo_id_seq'::regclass) |
Identifiant automatique numérique de la geolocalisation |
|||
|
geo_dis_id |
integer |
|
|
|
Identifiant automatique numérique du dispositif auquel la geolocalistation est rattachée |
||
|
geo_for_id |
integer |
|
|
|
Identifiant automatique numérique de la foret à laquelle la geolocalistation est rattachée |
||
|
|
geo_identifiant |
varchar(30) |
|
|
Identifiant national de partielle forestière de la geolocalisation dans BDR |
||
|
|
geo_code |
varchar(30) |
|
|
|
Numéro usuel de la partielle forestière de la geolocalisation |
|
|
|
geo_x |
double precision |
|
|
|
Valeur X de la geolocalisation |
|
|
|
geo_y |
double precision |
|
|
|
Valeur Y de la geolocalisation |
|
|
|
geo_referentiel |
varchar(50) |
|
|
|
Referentiel de mesure pour les X et Y de la geolocalisation |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
geo_dis_id |
dis_id |
No Action |
No Action |
|
Immediate |
|
||
geo_for_id |
for_id |
No Action |
No Action |
|
Immediate |
Une geolocalisation appartient à une et une seule foret |
Check Constraints
There are no check constraints for table tr_geolocalisation_geo
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
geo_identifiant |
|
L'identifiant d'une geolocalisation doit être unique |
||
btree |
|
geo_id |
|
|||
btree |
|
geo_dis_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
|
btree |
|
geo_for_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
Triggers
There are no triggers for table tr_geolocalisation_geo
Rules
There are no rules for table tr_geolocalisation_geo
Policies
There are no policies for table tr_geolocalisation_geo
Referenced
There are no tables referenced by table tr_geolocalisation_geo
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tr_geolocalisation_geo (
geo_id SERIAL,
geo_dis_id INTEGER NOT NULL,
geo_for_id INTEGER NOT NULL,
geo_identifiant VARCHAR(30) NOT NULL,
geo_code VARCHAR(30) NOT NULL,
geo_x DOUBLE PRECISION NOT NULL,
geo_y DOUBLE PRECISION NOT NULL,
geo_referentiel VARCHAR(50) NOT NULL,
CONSTRAINT c_uni_identifiant_geo UNIQUE(geo_identifiant),
CONSTRAINT tr_geolocalisation_geo_pkey PRIMARY KEY(geo_id),
CONSTRAINT c_fk_dis_geo FOREIGN KEY (geo_dis_id)
REFERENCES public.t_dispositif_dis(dis_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_for_geo FOREIGN KEY (geo_for_id)
REFERENCES public.tr_foret_for(for_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
)
WITH (oids = false);
COMMENT ON TABLE public.tr_geolocalisation_geo
IS 'Table des geolocalisations. Informations relatives aux geolocalisations (Onglet loc_prf)';
COMMENT ON COLUMN public.tr_geolocalisation_geo.geo_id
IS 'Identifiant automatique numérique de la geolocalisation';
COMMENT ON COLUMN public.tr_geolocalisation_geo.geo_dis_id
IS 'Identifiant automatique numérique du dispositif auquel la geolocalistation est rattachée';
COMMENT ON COLUMN public.tr_geolocalisation_geo.geo_for_id
IS 'Identifiant automatique numérique de la foret à laquelle la geolocalistation est rattachée';
COMMENT ON COLUMN public.tr_geolocalisation_geo.geo_identifiant
IS 'Identifiant national de partielle forestière de la geolocalisation dans BDR';
COMMENT ON COLUMN public.tr_geolocalisation_geo.geo_code
IS 'Numéro usuel de la partielle forestière de la geolocalisation';
COMMENT ON COLUMN public.tr_geolocalisation_geo.geo_x
IS 'Valeur X de la geolocalisation';
COMMENT ON COLUMN public.tr_geolocalisation_geo.geo_y
IS 'Valeur Y de la geolocalisation';
COMMENT ON COLUMN public.tr_geolocalisation_geo.geo_referentiel
IS 'Referentiel de mesure pour les X et Y de la geolocalisation';
COMMENT ON CONSTRAINT c_fk_for_geo ON public.tr_geolocalisation_geo
IS 'Une geolocalisation appartient à une et une seule foret';
COMMENT ON CONSTRAINT c_uni_identifiant_geo ON public.tr_geolocalisation_geo
IS 'L''identifiant d''une geolocalisation doit être unique';
CREATE INDEX x_btr_fkey_dis_geo ON public.tr_geolocalisation_geo
USING btree (geo_dis_id);
COMMENT ON INDEX public.x_btr_fkey_dis_geo
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
CREATE INDEX x_btr_fkey_for_geo ON public.tr_geolocalisation_geo
USING btree (geo_for_id);
COMMENT ON INDEX public.x_btr_fkey_for_geo
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |