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

65 lines
1.7 KiB
SQL

-- Customer specific once-script UWVA81.
--
-- (c) 2013 SG|facilitor bv
-- $Revision$
-- $Id$
--
-- Support: +31 53 4800700
SET ECHO ON
SPOOL xuwva81.lst
SET DEFINE OFF
-- FSN#26728: Afvoeren rapportages schoonmaak en ruimtebeheer!
/* Formatted on 30-5-2013 16:32:41 (QP5 v5.115.810.9015) */
DELETE FROM fac_usrrap
WHERE fac_usrrap_key IN (244, 684, 726, 625, 665, 705);
--244
DROP VIEW uwva_v_rap_cat_fac_detail;
--684
DROP VIEW uwva_v_rap_sch_gebgebr;
--726
DROP VIEW uwva_v_rap_sch_gebruikfrozen;
--625
DROP VIEW uwva_v_rap_sch_gebruik;
--665
DROP VIEW uwva_v_rap_sch_ruimte_delta;
--705
DROP VIEW uwva_v_rap_sch_srtgebr_delta;
COMMIT;
-- UWVA#26765: Bezoekers-rapportage via tabelizer (50=Overig 02: Servicepunt)!
CREATE OR REPLACE VIEW uwva_v_rap_bezoekers AS SELECT NULL x FROM DUAL;
INSERT INTO FAC_USRRAP
(fac_usrrap_omschrijving, fac_usrrap_view_name,
fac_usrrap_in_huidige_locatie,
fac_usrrap_template, fac_usrrap_macro,
fac_usrrap_vraagbegindatum, fac_usrrap_vraageinddatum,
fac_usrrap_functie,
fac_usrrap_info,
fac_functie_key, fac_usrrap_autorefresh
)
VALUES ('BEZOEKERS: Aantallen per locatie per dag', 'UWVA_V_RAP_BEZOEKERS',
NULL,
NULL, NULL,
0, 0,
8,
'Bezoekersoverzicht per locatie per dag in periode (datum: dd-mm-jjjj)',
50,
0
);
COMMIT;
BEGIN adm.systrackscript('$Workfile: uwva81.sql $', '$Revision$', 1); END;
/
SPOOL OFF
@@uwva_fin.sql
@@uwva_hv.sql
@@uwva_misc.sql
BEGIN fac.registercustversion('UWVA', 81); END;
/
COMMIT;