Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SUPPORT-13459] fix vb_verblijfsobject_adres voor Oracle #1694

Merged
merged 2 commits into from
Feb 4, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions datamodel/extra_scripts/oracle/208_bag2_views.sql
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ from (select 'true'
a.huisletter,
a.huisnummertoevoeging,
a.postcode,
(select listagg(vbod.gebruiksdoel, ', ')
from verblijfsobject_gebruiksdoel vbod
(select listagg(vbod.maaktdeeluitvan, ', ')
from verblijfsobject_maaktdeeluitvan vbod
where (vbod.identificatie = vo.identificatie and vbod.voorkomenidentificatie =
vo.voorkomenidentificatie)) as maaktdeeluitvan,
(select listagg(vg.gebruiksdoel, ', ')
Expand All @@ -219,10 +219,10 @@ from (select 'true'
a.huisletter,
a.huisnummertoevoeging,
a.postcode,
(select listagg(vbod.gebruiksdoel, ', ')
from verblijfsobject_gebruiksdoel vbod
where (vbod.identificatie = voa.identificatie and vbod.voorkomenidentificatie =
voa.voorkomenidentificatie)) as maaktdeeluitvan,
(select listagg(vbod.maaktdeeluitvan, ', ')
from verblijfsobject_maaktdeeluitvan vbod
where (vbod.identificatie = vo.identificatie and vbod.voorkomenidentificatie =
geertoff marked this conversation as resolved.
Show resolved Hide resolved
vo.voorkomenidentificatie)) as maaktdeeluitvan,
(select listagg(vg.gebruiksdoel, ', ')
from verblijfsobject_gebruiksdoel vg
where (vg.identificatie = voa.identificatie and
Expand Down