PCHW#70948 -- Bevriezing SVD werkt niet

svn path=/Customer/; revision=54885
This commit is contained in:
Arthur Egberink
2022-02-08 13:52:24 +00:00
parent cd3f38985e
commit 57e732b38a

37
onces/PCHW/PCHW#70948.sql Normal file
View File

@@ -0,0 +1,37 @@
--
-- $Id$
--
-- Korte beschrijving wat het script doet
-- Correctie op PCHW#70895: FAC_RAPPORT tabel opschonen.
--
DEFINE thisfile = 'PCHW#70948.SQL'
DEFINE dbuser = '^PCHW'
SET ECHO ON
SET DEFINE ON
COLUMN fcltlogfile NEW_VALUE fcltlogfile NOPRINT;
COLUMN fcltcusterr NEW_VALUE fcltcusterr NOPRINT;
WHENEVER SQLERROR CONTINUE;
SELECT adm.getscriptspoolfile('&thisfile') AS fcltlogfile FROM DUAL;
SPOOL &fcltlogfile
WHENEVER SQLERROR EXIT;
SELECT adm.checkscriptcust('&dbuser') AS fcltcusterr FROM DUAL;
WHENEVER SQLERROR CONTINUE;
PROMPT &fcltcusterr
SET DEFINE OFF
------ payload begin ------
DELETE fac_rapport WHERE fac_rapport_node = 'FREEZE';
------ payload end ------
SET DEFINE OFF
BEGIN adm.systrackscriptId ('$Id$', 1); END;
/
COMMIT;
SET ECHO OFF
SPOOL OFF
SET DEFINE ON
PROMPT Logfile of this upgrade is: &fcltlogfile