Schema
Owner
postgres
Tablespace
(default)
Descriptions
table contenant les informations permettant la traçabilité des opérations réalisées pour obtenir les valeurs d'une variable pour une source donnée
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
tra_id |
serial |
|
nextval('tr_transformation_tra_tra_id_seq'::regclass) |
Identifiant automatique numérique de la transformation |
|||
|
|
tra_nom |
varchar(30) |
|
|
nom unique de la transformation |
||
|
|
tra_description |
varchar(250) |
|
|
|
description de la transformation |
|
|
|
tra_auteur |
varchar(30) |
|
|
|
|
auteur de la transformation |
|
|
tra_equation |
varchar |
|
|
|
|
equation utilisée pour transformer les valeurs de la variable pour la source de donnée |
|
|
tra_url |
varchar(150) |
|
|
|
|
url permettant l'accès à une description plus large de la transformation |
Foreign Keys
There are no foreign keys for table tr_transformation_tra
Check Constraints
There are no check constraints for table tr_transformation_tra
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
tra_nom |
|
Le nom de la transformation est unique |
||
btree |
|
tra_id |
|
Triggers
There are no triggers for table tr_transformation_tra
Rules
There are no rules for table tr_transformation_tra
Policies
There are no policies for table tr_transformation_tra
Referenced
Table | Schema | Foreign Key | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
srv_tra_id |
tra_id |
No Action |
No Action |
|
Immediate |
Un lien source / variable peut-être rattaché à 0 ou 1 transformation |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
5 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tr_transformation_tra (
tra_id SERIAL,
tra_nom VARCHAR(30) NOT NULL,
tra_description VARCHAR(250) NOT NULL,
tra_auteur VARCHAR(30),
tra_equation VARCHAR,
tra_url VARCHAR(150),
CONSTRAINT c_uni_nom_tra UNIQUE(tra_nom),
CONSTRAINT tr_transformation_tra_pkey PRIMARY KEY(tra_id)
) ;
COMMENT ON TABLE public.tr_transformation_tra
IS 'table contenant les informations permettant la traçabilité des opérations réalisées pour obtenir les valeurs d''une variable pour une source donnée';
COMMENT ON COLUMN public.tr_transformation_tra.tra_id
IS 'Identifiant automatique numérique de la transformation';
COMMENT ON COLUMN public.tr_transformation_tra.tra_nom
IS 'nom unique de la transformation';
COMMENT ON COLUMN public.tr_transformation_tra.tra_description
IS 'description de la transformation';
COMMENT ON COLUMN public.tr_transformation_tra.tra_auteur
IS 'auteur de la transformation';
COMMENT ON COLUMN public.tr_transformation_tra.tra_equation
IS 'equation utilisée pour transformer les valeurs de la variable pour la source de donnée';
COMMENT ON COLUMN public.tr_transformation_tra.tra_url
IS 'url permettant l''accès à une description plus large de la transformation';
COMMENT ON CONSTRAINT c_uni_nom_tra ON public.tr_transformation_tra
IS 'Le nom de la transformation est unique';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |