20 lines
481 B
SQL
20 lines
481 B
SQL
-- Customer specific once-script ALLV#23039.sql
|
|
-- Update ruimte opstelling key van alle opstelling voor ruimte 3.16 Hollandia naar standaard opstelling zodat de rest kan worden verwijderd.
|
|
--
|
|
-- (c) 2012 SG|facilitor bv
|
|
-- $Revision$
|
|
-- $Id$
|
|
--
|
|
-- Support: +31 53 4800700
|
|
|
|
SET ECHO ON
|
|
SPOOL xAAEN#23039.lst
|
|
SET DEFINE OFF
|
|
|
|
UPDATE res_rsv_ruimte
|
|
SET res_ruimte_opstel_key = 4441
|
|
WHERE res_ruimte_opstel_key IN (4071, 4072, 4541);
|
|
|
|
COMMIT;
|
|
|
|
SPOOL OFF |