APGR#60608 -- Import tabel voor koppeling ESIS
svn path=/Customer/; revision=45743
This commit is contained in:
0
onces/APGR/.gitignore
vendored
0
onces/APGR/.gitignore
vendored
39
onces/APGR/APGR#60608.sql
Normal file
39
onces/APGR/APGR#60608.sql
Normal file
@@ -0,0 +1,39 @@
|
||||
--
|
||||
-- $Id$
|
||||
--
|
||||
-- Table en inrichting voor import ESIS opdrachtstatus
|
||||
|
||||
DEFINE thisfile = 'APGR#.sql'
|
||||
DEFINE dbuser = '^APGR'
|
||||
|
||||
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 ------
|
||||
|
||||
CREATE TABLE apgr_imp_esis
|
||||
(
|
||||
imp_log_run NUMBER,
|
||||
opdrachtnummer VARCHAR2 (24),
|
||||
status VARCHAR2 (24),
|
||||
updatedatum DATE,
|
||||
kosten NUMBER (12, 2)
|
||||
);
|
||||
|
||||
------ 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
|
||||
Reference in New Issue
Block a user