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

Table: t_activite_act

 

 

Schema

public

 

Owner

cefs

 

Tablespace

(default)

 

Descriptions

Table des informations d'activité mesurées.

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

act_id

serial

 

nextval('t_activite_act_act_id_seq'::regclass)

Identifiant automatique de l'information d'activité

 

act_ani_id

integer

 

 

 

Identifiant automatique de l'animal associé à la donnée activité

 

 

act_sequence

integer

 

 

 

 

Séquence fournie ou ajoutée par rapport à l'ordre des lignes du fichier d'origine

 

 

act_doublon_horodatage

boolean

 

 

false

Indicateur précisant si l'horodatage est en doublon

 

 

act_date

date

 

 

 

Date de la donnée activité

 

 

act_heure

time

 

 

 

Heure de la donnée activité

 

 

act_x

real

 

 

 

Activité en X du collier

 

 

act_y

real

 

 

 

Activité en Y du collier

 

 

act_head_down

real

 

 

 

 

Activité de mouvement de tête

 

 

act_temp

real

 

 

 

 

Température mesurée par le collier

 

 

act_annee_suivi

smallint

 

 

 

Année de suivi de l' activité

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_ani_act

act_ani_id

public.t_animal_ani

ani_id

Cascade

No Action

 

Immediate

Une donnée d'activité est associée à un et un seul animal

 

Check Constraints

There are no check constraints for table t_activite_act

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

activite_act_pkey

btree

 

act_id

 

x_btr_ani_id_act

btree

 

act_ani_id

 

 

 

x_btr_anneesuivi_act

btree

 

act_annee_suivi

 

 

 

 

Triggers

There are no triggers for table t_activite_act

 

Rules

There are no rules for table t_activite_act

 

Policies

There are no policies for table t_activite_act

 

Referenced

There are no tables referenced by table t_activite_act

 

Properties

Property

Value

Inherited From

 

Rows

27965800

Pages

288624

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.t_activite_act (
 act_id SERIAL,
 act_ani_id INTEGER NOT NULL,
 act_sequence INTEGER,
 act_doublon_horodatage BOOLEAN DEFAULT false NOT NULL,
 act_date DATE NOT NULL,
 act_heure TIME WITHOUT TIME ZONE NOT NULL,
 act_x REAL NOT NULL,
 act_y REAL NOT NULL,
 act_head_down REAL,
 act_temp REAL,
 act_annee_suivi SMALLINT NOT NULL,
 CONSTRAINT activite_act_pkey PRIMARY KEY(act_id),
 CONSTRAINT c_fk_ani_act FOREIGN KEY (act_ani_id)
   REFERENCES public.t_animal_ani(ani_id)
   ON DELETE CASCADE
   ON UPDATE NO ACTION
   NOT DEFERRABLE

)
WITH (oids = false);

COMMENT ON TABLE public.t_activite_act
IS 'Table des informations d''activité mesurées.';

COMMENT ON COLUMN public.t_activite_act.act_id
IS 'Identifiant automatique de l''information d''activité';

COMMENT ON COLUMN public.t_activite_act.act_ani_id
IS 'Identifiant automatique de l''animal associé à la donnée activité';

COMMENT ON COLUMN public.t_activite_act.act_sequence
IS 'Séquence fournie ou ajoutée par rapport à l''ordre des lignes du fichier d''origine';

COMMENT ON COLUMN public.t_activite_act.act_doublon_horodatage
IS 'Indicateur précisant si l''horodatage est en doublon';

COMMENT ON COLUMN public.t_activite_act.act_date
IS 'Date de la donnée activité';

COMMENT ON COLUMN public.t_activite_act.act_heure
IS 'Heure de la donnée activité';

COMMENT ON COLUMN public.t_activite_act.act_x
IS 'Activité en X du collier';

COMMENT ON COLUMN public.t_activite_act.act_y
IS 'Activité en Y du collier';

COMMENT ON COLUMN public.t_activite_act.act_head_down
IS 'Activité de mouvement de tête';

COMMENT ON COLUMN public.t_activite_act.act_temp
IS 'Température mesurée par le collier';

COMMENT ON COLUMN public.t_activite_act.act_annee_suivi
IS 'Année de suivi de l'' activité';

COMMENT ON CONSTRAINT c_fk_ani_act ON public.t_activite_act
IS 'Une donnée d''activité est associée à un et un seul animal';

CREATE INDEX x_btr_ani_id_act ON public.t_activite_act
 USING btree (act_ani_id);

CREATE INDEX x_btr_anneesuivi_act ON public.t_activite_act
 USING btree (act_annee_suivi);

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23
Previous topic Chapter index Next topic