Datadictionary OpenWave 3.1.11
Previous topic Chapter index Next topic

Table: tbinfotrefwoord

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met mogelijke trefwoorden waarmee een info-aanvraag te karakteriseren is

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbinfotrefwoord_dnkey_seq'::regclass)

Primary key.

 

 

dvomschrijving

varchar(40)

 

 

 

 

Omschrijving van Trefwoord.

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum waarvanaf trefwoord niet meer gebruikt wordt.

 

Foreign Keys

There are no foreign keys for table tbinfotrefwoord

 

Check Constraints

There are no check constraints for table tbinfotrefwoord

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbinfotrefwoord

btree

 

dnkey

 

idx_vervaldatum_infotrefw

btree

 

ddvervaldatum

 

 

 

 

Triggers

There are no triggers for table tbinfotrefwoord

 

Rules

There are no rules for table tbinfotrefwoord

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbinfotrefwoordennn

public

cfk_infotrefwoordennn_trefw

dnkeyinfotrefwoord

public.tbinfotrefwoord

dnkey

Cascade

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tbinfotrefwoord (
 dnkey SERIAL,
 dvomschrijving VARCHAR(40),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 CONSTRAINT cpk_tbinfotrefwoord PRIMARY KEY(dnkey)
)
WITH (oids = false);

COMMENT ON TABLE public.tbinfotrefwoord
IS 'Tabel met mogelijke trefwoorden waarmee een info-aanvraag te karakteriseren is';

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

COMMENT ON COLUMN public.tbinfotrefwoord.dvomschrijving
IS 'Omschrijving van Trefwoord.';

COMMENT ON COLUMN public.tbinfotrefwoord.ddvervaldatum
IS 'Datum waarvanaf trefwoord niet meer gebruikt wordt.';

CREATE INDEX idx_vervaldatum_infotrefw ON public.tbinfotrefwoord
 USING btree (ddvervaldatum);

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