Files
Customer/onces/RENK/RENK#26151.sql
Peter Koerhuis 3b8d7f1dcc Migratie once-scripts van /branch naar /onces
svn path=/Customer/; revision=21207
2014-04-02 13:57:31 +00:00

20 lines
475 B
SQL

-- Customer specific once-script RENK#26151.sql
--
-- Stel voor de volgende contractsoorten het type in als huur/rental (key 2)
-- V&F huur/verhuur (key 182)
-- V&F volkstuinen (key 203
-- V&F opstal (key 201)
-- V&F grondstroken (key 204)
-- V&F erfpacht (key 202)
SET ECHO ON
SPOOL RENK26151.lst
SET DEFINE OFF
UPDATE cnt_disc_params
SET cnt_srtcontract_type = 2
WHERE cnt_ins_discipline_key IN (182, 203, 201, 204, 202);
COMMIT;
SPOOL OFF