Schema
Owner
cefs
Tablespace
(default)
Descriptions
There is no description for table tr_parcellaire_par
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
par_id |
serial |
|
nextval('tr_parcellaire_par_par_id_seq'::regclass) |
identifiant automatique d'une parcelle |
|||
|
|
par_annee |
integer |
|
|
|
Annee de définition de la parcelle |
|
|
|
par_recno |
double precision |
|
|
|
|
|
|
|
par_os |
varchar(30) |
|
|
|
|
Occupation du sol |
|
|
par_grd_cat |
varchar(30) |
|
|
|
|
Catégorie normalisée de l'occupation du sol |
|
|
geom |
public.geometry |
|
|
|
|
Objet géométrique de la parcelle, alimenté depuis les objets géométriques des tables tr_sig_AAAA avec correction de la géométrie via une instruction st_collectionextract(st_makevalid(tr_sigAAAA.geom),3) |
|
|
par_typologie |
varchar(30) |
|
|
|
|
Typologie de la parcelle |
Foreign Keys
There are no foreign keys for table tr_parcellaire_par
Check Constraints
There are no check constraints for table tr_parcellaire_par
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
par_id |
|
|||
gist |
|
geom |
|
|
|
|
btree |
|
par_annee |
|
|
|
|
btree |
|
par_grd_cat |
|
|
|
Triggers
There are no triggers for table tr_parcellaire_par
Rules
There are no rules for table tr_parcellaire_par
Policies
There are no policies for table tr_parcellaire_par
Referenced
There are no tables referenced by table tr_parcellaire_par
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
245389 |
Pages |
38198 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tr_parcellaire_par (
par_id SERIAL,
par_annee INTEGER NOT NULL,
par_recno DOUBLE PRECISION,
par_os VARCHAR(30),
par_grd_cat VARCHAR(30),
geom public.geometry,
par_typologie VARCHAR(30),
CONSTRAINT parcellaire_par_pkey PRIMARY KEY(par_id)
)
WITH (oids = false);
COMMENT ON COLUMN public.tr_parcellaire_par.par_id
IS 'identifiant automatique d''une parcelle';
COMMENT ON COLUMN public.tr_parcellaire_par.par_annee
IS 'Annee de définition de la parcelle';
COMMENT ON COLUMN public.tr_parcellaire_par.par_os
IS 'Occupation du sol';
COMMENT ON COLUMN public.tr_parcellaire_par.par_grd_cat
IS 'Catégorie normalisée de l''occupation du sol';
COMMENT ON COLUMN public.tr_parcellaire_par.geom
IS 'Objet géométrique de la parcelle, alimenté depuis les objets géométriques des tables tr_sig_AAAA avec correction de la géométrie via une instruction st_collectionextract(st_makevalid(tr_sigAAAA.geom),3)';
COMMENT ON COLUMN public.tr_parcellaire_par.par_typologie
IS 'Typologie de la parcelle';
CREATE INDEX tr_parcellaire_par_geom_gist ON public.tr_parcellaire_par
USING gist (geom public.gist_geometry_ops_2d);
CREATE INDEX x_btr_annee_par ON public.tr_parcellaire_par
USING btree (par_annee);
CREATE INDEX x_btr_grd_cat_par ON public.tr_parcellaire_par
USING btree (par_grd_cat COLLATE pg_catalog."default");
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |