Skip to content

Commit

Permalink
[BRMO-383] voeg kolommen tijdstipaanbieding en tijdstipaanbieding2 to…
Browse files Browse the repository at this point in the history
…e aan view mb_onroerendezakenmetrechthebbenden
  • Loading branch information
mprins committed Nov 14, 2024
1 parent 42ecd32 commit e5391ef
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
11 changes: 9 additions & 2 deletions datamodel/extra_scripts/oracle/210_bag2_brk2.0_mat_views.sql
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,16 @@ SELECT CAST(ROWNUM AS INTEGER) AS objectid,
koz.postcode,
koz.lon,
koz.lat,
koz.begrenzing_perceel
koz.begrenzing_perceel,
st1.tijdstipaanbieding,
st2.tijdstipaanbieding as tijdstipaanbieding2
FROM BRMO_BRK.mb_zr_rechth zrr
RIGHT JOIN mb_kadastraleonroerendezakenmetadres koz ON (zrr.koz_identif = koz.identificatie);
RIGHT JOIN mb_kadastraleonroerendezakenmetadres koz ON (zrr.koz_identif = koz.identificatie)
JOIN BRMO_BRK.recht r on zrr.zr_identif = r.van
LEFT JOIN BRMO_BRK.stukdeel sd1 ON sd1.identificatie = r.isgebaseerdop
LEFT JOIN BRMO_BRK.stukdeel sd2 ON sd2.identificatie = r.isgebaseerdop2
LEFT JOIN BRMO_BRK.stuk st1 ON sd1.deelvan = st1.identificatie
LEFT JOIN BRMO_BRK.stuk st2 ON sd2.deelvan = st2.identificatie;

COMMENT ON MATERIALIZED VIEW mb_onroerendezakenmetrechthebbenden
IS 'commentaar view mb_onroerendezakenmetrechthebbenden:
Expand Down
15 changes: 13 additions & 2 deletions datamodel/extra_scripts/postgresql/210_bag2_brk2.0_mat_views.sql
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ SELECT row_number() OVER ()
st_x(st_transform(qry.plaatscoordinaten, 4326)) AS lon,
st_y(st_transform(qry.plaatscoordinaten, 4326)) AS lat,
qry.begrenzing_perceel
-- ,st1.tijdstipaanbieding,
-- st2.tijdstipaanbieding as tijdstipaanbieding2
FROM (SELECT p.identificatie,
'perceel' AS type,
p.soortgrootte,
Expand Down Expand Up @@ -241,7 +243,9 @@ CREATE MATERIALIZED VIEW public.mb_onroerendezakenmetrechthebbenden
postcode,
lon,
lat,
begrenzing_perceel
begrenzing_perceel,
tijdstipaanbieding,
tijdstipaanbieding2
)
AS
SELECT row_number() OVER () AS objectid,
Expand Down Expand Up @@ -301,9 +305,16 @@ SELECT row_number() OVER () AS objectid,
koz.postcode,
koz.lon,
koz.lat,
koz.begrenzing_perceel
koz.begrenzing_perceel,
st1.tijdstipaanbieding,
st2.tijdstipaanbieding as tijdstipaanbieding2
FROM brk.mb_zr_rechth zrr
RIGHT JOIN mb_kadastraleonroerendezakenmetadres koz ON zrr.koz_identif = koz.identificatie
JOIN brk.recht r on zrr.zr_identif = r.van
LEFT JOIN brk.stukdeel sd1 ON sd1.identificatie = r.isgebaseerdop
LEFT JOIN brk.stukdeel sd2 ON sd2.identificatie = r.isgebaseerdop2
LEFT JOIN brk.stuk st1 ON sd1.deelvan = st1.identificatie
LEFT JOIN brk.stuk st2 ON sd2.deelvan = st2.identificatie
WITH NO DATA;
-- View indexes:
CREATE INDEX mb_onroerendezakenmetrechthebbenden_begrenzing_perceel_idx ON public.mb_onroerendezakenmetrechthebbenden USING gist (begrenzing_perceel);
Expand Down

0 comments on commit e5391ef

Please sign in to comment.