Files
Customer/onces/BLCC/BLCC#59950.sql
Maarten van der Heide b672f27f50 BLCC#59950 Nieuwe werkwijze gepland onderhoud
svn path=/Customer/; revision=45178
2019-12-10 15:36:50 +00:00

39 lines
920 B
SQL

--
-- $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