Datadictionary OpenWave 3.1.32
Previous topic Chapter index Next topic

Table: tbcbstypebouwwerk

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met type bouwwerk zoals gespecificeerd door CBS

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbcbstypebouwwerk_dnkey_seq'::regclass)

Primary key

 

 

dvomschrijving

varchar(200)

 

 

 

Omschrijving van de CBS type bouwwerk

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum vanaf wanneer de CBS type bouwwerk vervallen is

 

Foreign Keys

There are no foreign keys for table tbcbstypebouwwerk

 

Check Constraints

Name

Condition

Description

cnn_tbcbstypebouwwerk_dvomschrijving

dvomschrijving IS NOT NULL

 

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbcbstypebouwwerk

btree

 

dnkey

 

idu_tbcbstypebouwwerk_omschrijving

btree

 

dvomschrijving

 

 

 

Triggers

There are no triggers for table tbcbstypebouwwerk

 

Rules

There are no rules for table tbcbstypebouwwerk

 

Policies

There are no policies for table tbcbstypebouwwerk

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbcbs_gegevens_w011

public

cfk_tbcbsgegevensw011_dnkeytypebouwwerk

dnkeytypebouwwerk

public.tbcbstypebouwwerk

dnkey

Set Null

No Action

 

Immediate

 

tbcbstypeaansoortbouwwerk

public

cfk_tbcbstypeaansoortbouwwerk_dnkeytypebouwwerk

dnkeytypebouwwerk

public.tbcbstypebouwwerk

dnkey

Cascade

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tbcbstypebouwwerk (
 dnkey SERIAL,
 dvomschrijving VARCHAR(200),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 CONSTRAINT cpk_tbcbstypebouwwerk PRIMARY KEY(dnkey),
 CONSTRAINT cnn_tbcbstypebouwwerk_dvomschrijving CHECK (dvomschrijving IS NOT NULL)
) ;

COMMENT ON TABLE public.tbcbstypebouwwerk
IS 'Tabel met type bouwwerk zoals gespecificeerd door CBS';

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

COMMENT ON COLUMN public.tbcbstypebouwwerk.dvomschrijving
IS 'Omschrijving van de CBS type bouwwerk';

COMMENT ON COLUMN public.tbcbstypebouwwerk.ddvervaldatum
IS 'Datum vanaf wanneer de CBS type bouwwerk vervallen is';

CREATE UNIQUE INDEX idu_tbcbstypebouwwerk_omschrijving ON public.tbcbstypebouwwerk
 USING btree (dvomschrijving COLLATE pg_catalog."default");

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 2-5-2025 13:49
Previous topic Chapter index Next topic