BLCC#59950 Nieuwe werkwijze gepland onderhoud

svn path=/Customer/; revision=45178
This commit is contained in:
Maarten van der Heide
2019-12-10 15:36:50 +00:00
parent a58d3fc0e2
commit b672f27f50

38
onces/BLCC/BLCC#59950.sql Normal file
View File

@@ -0,0 +1,38 @@
--
-- $Id$
--
-- Customer specific once-script BLCC#59950.SQL.
DEFINE thisfile = 'BLCC#59950.SQL'
DEFINE dbuser = '^BLCC'
SET ECHO ON
SET DEFINE ON
COLUMN fcltlogfile NEW_VALUE fcltlogfile NOPRINT;
WHENEVER SQLERROR EXIT;
SELECT adm.scriptspoolfile('&dbuser', '&thisfile') AS fcltlogfile FROM DUAL;
WHENEVER SQLERROR CONTINUE;
SPOOL &fcltlogfile
SET DEFINE OFF
------ payload begin ------
-- BLCC#59950: Definitie tabel voor importfunctie CNT-algscope!
CREATE TABLE blcc_imp_cnt_gebscope
(
contractnr VARCHAR2 (50), -- C30+'.'+C10
gebouwcode VARCHAR2 (12), -- C12
gebouwkosten NUMBER (11,2)
);
COMMIT;
------ 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