Datadictionary OpenWave 3.1.11
Previous topic Chapter index Next topic

Table: tbpgs

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met richtlijnen publiekatiereeks gevaarlijke stoffen

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbpgs_dnkey_seq'::regclass)

Primary key.

 

 

dvcode

varchar(5)

 

 

 

 

PGS-Codering van de gevaarlijke stof (alleen numerieke deel).

 

 

dvomschrijving

varchar(120)

 

 

 

 

PGS-omschrijving van de gevaarlijke stof.

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum waarop pgs-code is vervallen.

 

Foreign Keys

There are no foreign keys for table tbpgs

 

Check Constraints

There are no check constraints for table tbpgs

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbpgs

btree

 

dnkey

 

 

Triggers

There are no triggers for table tbpgs

 

Rules

There are no rules for table tbpgs

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbmilopslag

public

cfk_tbmilopslag_keypgs

dnkeypgs

public.tbpgs

dnkey

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tbpgs (
 dnkey SERIAL,
 dvcode VARCHAR(5),
 dvomschrijving VARCHAR(120),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 CONSTRAINT cpk_tbpgs PRIMARY KEY(dnkey)
)
WITH (oids = false);

COMMENT ON TABLE public.tbpgs
IS 'Tabel met richtlijnen publiekatiereeks gevaarlijke stoffen';

COMMENT ON COLUMN public.tbpgs.dnkey
IS 'Primary key.';

COMMENT ON COLUMN public.tbpgs.dvcode
IS 'PGS-Codering van de gevaarlijke stof (alleen numerieke deel).';

COMMENT ON COLUMN public.tbpgs.dvomschrijving
IS 'PGS-omschrijving van de gevaarlijke stof.';

COMMENT ON COLUMN public.tbpgs.ddvervaldatum
IS 'Datum waarop pgs-code is vervallen.';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 22-2-2017 10:50
Previous topic Chapter index Next topic