Schema
public
Owner
waveuser005
Tablespace
(default)
Descriptions
Tabel met toetsingen op bestemmingsplancriteria per omgevingsvergunning
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
dnkey |
serial |
|
nextval('tbomgvergbestemtoets_dnkey_seq'::regclass) |
Primary key. |
|||
|
dnkeybestemtoetscrit |
integer |
|
|
|
|
Foreign key naar tbbestemtoetscriteria.dnkey. |
|
|
dnkeyomgvergunningen |
integer |
|
|
|
|
Foreign key naar TbOmgvergunning.dnkey. |
|
|
|
dlinvoorbereiding |
char(1) |
|
|
|
'F'::bpchar |
Slaat het toetscriterium in dit geval op het geldende of het in voorbereiding zijnde bestemmingsplan. Alleen de waardes True or False zijn toegestaan. |
|
|
dvgebouw |
char(1) |
|
|
|
'H'::bpchar |
Slaat het toetscriterium in dit geval op het hoofdgebouw of het bijgebouw. Alleen de letters H (hoofdgebouw) of B (bijgebouw) zijn hier toegestaan. |
|
|
dlcritakkoord |
char(1) |
|
|
|
'N'::bpchar |
Is het criterium akkoord voor de combinatie soort bestemmingsplan, soort gebouw. Alleen de waarden T, F of N toegestaan N staat voor: nog niet bekend. |
|
|
dlontheffingakkoord |
char(1) |
|
|
|
'N'::bpchar |
Is de ontheffing dan akkoord voor de combinatie soort bestemmingsplan, soort gebouw. Alleen de waarden T, F of N toegestaan N staat voor: nog niet bekend. |
|
|
dvomsafwijking |
varchar(300) |
|
|
|
|
Omschrijving van de afwijking (indien dlcritakkoord is F). |
|
|
dvprocwro |
varchar(20) |
|
|
|
|
Welke WRO procedure is van toep. (indien dlcritakkoord is F). |
|
|
dvmemo |
varchar(4000) |
|
|
|
|
Notitie (niet geencrypt). |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
cfk_tbomgbestemt_keycrit |
dnkeybestemtoetscrit |
dnkey |
No Action |
No Action |
|
Immediate |
|
|
cfk_tbomgbestemt_keyomgverg |
dnkeyomgvergunningen |
dnkey |
Cascade |
No Action |
|
Immediate |
|
Check Constraints
Name | Condition | Description |
---|---|---|
chk_omgbestemt_dlcritak |
dlcritakkoord = ANY (ARRAY['T'::bpchar, 'F'::bpchar, 'N'::bpchar]) |
|
chk_omgbestemt_dlinvoorb |
dlinvoorbereiding = ANY (ARRAY['T'::bpchar, 'F'::bpchar]) |
|
chk_omgbestemt_dlonthak |
dlontheffingakkoord = ANY (ARRAY['T'::bpchar, 'F'::bpchar, 'N'::bpchar]) |
|
chk_omgbestemt_dvgebouw |
dvgebouw = ANY (ARRAY['H'::bpchar, 'B'::bpchar]) |
|
cnn_omgbestemt_dlcritak |
dlcritakkoord IS NOT NULL |
|
cnn_omgbestemt_dlinvoorb |
dlinvoorbereiding IS NOT NULL |
|
cnn_omgbestemt_dlonthak |
dlontheffingakkoord IS NOT NULL |
|
cnn_omgbestemt_dvgebouw |
dvgebouw IS NOT NULL |
|
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
cpk_tbomgvergbestemtoets |
btree |
|
dnkey |
|
||
idx_omgbestemt_keycrit |
btree |
|
dnkeybestemtoetscrit |
|
|
|
idx_omgbestemt_keyomgverg |
btree |
|
dnkeyomgvergunningen |
|
|
|
Triggers
There are no triggers for table tbomgvergbestemtoets
Rules
There are no rules for table tbomgvergbestemtoets
Referenced
There are no tables referenced by table tbomgvergbestemtoets
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tbomgvergbestemtoets (
dnkey SERIAL,
dnkeybestemtoetscrit INTEGER,
dnkeyomgvergunningen INTEGER,
dlinvoorbereiding CHAR(1) DEFAULT 'F'::bpchar,
dvgebouw CHAR(1) DEFAULT 'H'::bpchar,
dlcritakkoord CHAR(1) DEFAULT 'N'::bpchar,
dlontheffingakkoord CHAR(1) DEFAULT 'N'::bpchar,
dvomsafwijking VARCHAR(300),
dvprocwro VARCHAR(20),
dvmemo VARCHAR(4000),
CONSTRAINT cpk_tbomgvergbestemtoets PRIMARY KEY(dnkey),
CONSTRAINT chk_omgbestemt_dlcritak CHECK (dlcritakkoord = ANY (ARRAY['T'::bpchar, 'F'::bpchar, 'N'::bpchar])),
CONSTRAINT chk_omgbestemt_dlinvoorb CHECK (dlinvoorbereiding = ANY (ARRAY['T'::bpchar, 'F'::bpchar])),
CONSTRAINT chk_omgbestemt_dlonthak CHECK (dlontheffingakkoord = ANY (ARRAY['T'::bpchar, 'F'::bpchar, 'N'::bpchar])),
CONSTRAINT chk_omgbestemt_dvgebouw CHECK (dvgebouw = ANY (ARRAY['H'::bpchar, 'B'::bpchar])),
CONSTRAINT cnn_omgbestemt_dlcritak CHECK (dlcritakkoord IS NOT NULL),
CONSTRAINT cnn_omgbestemt_dlinvoorb CHECK (dlinvoorbereiding IS NOT NULL),
CONSTRAINT cnn_omgbestemt_dlonthak CHECK (dlontheffingakkoord IS NOT NULL),
CONSTRAINT cnn_omgbestemt_dvgebouw CHECK (dvgebouw IS NOT NULL),
CONSTRAINT cfk_tbomgbestemt_keycrit FOREIGN KEY (dnkeybestemtoetscrit)
REFERENCES public.tbbestemtoetscriteria(dnkey)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT cfk_tbomgbestemt_keyomgverg FOREIGN KEY (dnkeyomgvergunningen)
REFERENCES public.tbomgvergunning(dnkey)
ON DELETE CASCADE
ON UPDATE NO ACTION
NOT DEFERRABLE
)
WITH (oids = false);
COMMENT ON TABLE public.tbomgvergbestemtoets
IS 'Tabel met toetsingen op bestemmingsplancriteria per omgevingsvergunning';
COMMENT ON COLUMN public.tbomgvergbestemtoets.dnkey
IS 'Primary key.';
COMMENT ON COLUMN public.tbomgvergbestemtoets.dnkeybestemtoetscrit
IS 'Foreign key naar tbbestemtoetscriteria.dnkey.';
COMMENT ON COLUMN public.tbomgvergbestemtoets.dnkeyomgvergunningen
IS 'Foreign key naar TbOmgvergunning.dnkey.';
COMMENT ON COLUMN public.tbomgvergbestemtoets.dlinvoorbereiding
IS 'Slaat het toetscriterium in dit geval op het geldende of het in voorbereiding zijnde bestemmingsplan. Alleen de waardes True or False zijn toegestaan.';
COMMENT ON COLUMN public.tbomgvergbestemtoets.dvgebouw
IS 'Slaat het toetscriterium in dit geval op het hoofdgebouw of het bijgebouw. Alleen de letters H (hoofdgebouw) of B (bijgebouw) zijn hier toegestaan.';
COMMENT ON COLUMN public.tbomgvergbestemtoets.dlcritakkoord
IS 'Is het criterium akkoord voor de combinatie soort bestemmingsplan, soort gebouw. Alleen de waarden T, F of N toegestaan N staat voor: nog niet bekend.';
COMMENT ON COLUMN public.tbomgvergbestemtoets.dlontheffingakkoord
IS 'Is de ontheffing dan akkoord voor de combinatie soort bestemmingsplan, soort gebouw. Alleen de waarden T, F of N toegestaan N staat voor: nog niet bekend.';
COMMENT ON COLUMN public.tbomgvergbestemtoets.dvomsafwijking
IS 'Omschrijving van de afwijking (indien dlcritakkoord is F).';
COMMENT ON COLUMN public.tbomgvergbestemtoets.dvprocwro
IS 'Welke WRO procedure is van toep. (indien dlcritakkoord is F).';
COMMENT ON COLUMN public.tbomgvergbestemtoets.dvmemo
IS 'Notitie (niet geencrypt).';
CREATE INDEX idx_omgbestemt_keycrit ON public.tbomgvergbestemtoets
USING btree (dnkeybestemtoetscrit);
CREATE INDEX idx_omgbestemt_keyomgverg ON public.tbomgvergbestemtoets
USING btree (dnkeyomgvergunningen);
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 22-2-2017 10:50 |
![]() ![]() ![]() |