VNOG#85237 -- CUST procedure droppen die nu in de core zit

svn path=/Customer/; revision=66883
This commit is contained in:
Robin Stoker
2024-11-04 16:04:58 +00:00
parent b4ec6e2d1d
commit b8027d50aa

37
onces/VNOG/VNOG#85237.sql Normal file
View File

@@ -0,0 +1,37 @@
--
-- $Id$
--
-- Korte beschrijving wat het script doet
-- Droppen van CUST procedure die nu in de Core zit.
--
DEFINE thisfile = 'VNOG#85237.SQL'
DEFINE dbuser = 'VNOG'
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 ------
DROP PROCEDURE vnog.start_ctr;
------ 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