123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- -- IBM Confidential
- --
- -- OCO Source Materials
- --
- -- BI and PM: JSM
- --
- -- (c) Copyright IBM Corp. 2014
- --
- -- The source code for this program is not published or otherwise divested of its trade secrets, irrespective of what has been deposited with the U.S. Copyright Office.
- --
- -------------------------------------------------------------------------------
- -- NC907_UPDATE_DB2.SQL *DO NOT EDIT* Data Store Version: 1031
- -------------------------------------------------------------------------------
- -------------------------------------------------------------------------------
- --$100-- backup create begin
- -------------------------------------------------------------------------------
- -------------------------------------------------------------------------------
- --$110-- backup inserts begin
- -------------------------------------------------------------------------------
- -------------------------------------------------------------------------------
- --$130-- views drop begin
- -------------------------------------------------------------------------------
- -------------------------------------------------------------------------------
- --$140-- tables drop begin
- -------------------------------------------------------------------------------
- DROP TABLE NC_RESOURCE_LOCK;
- -------------------------------------------------------------------------------
- --$200-- recreate tables begin
- -------------------------------------------------------------------------------
- CREATE TABLE NC_RESOURCE_LOCK (
- LOCK_RESOURCE CHAR(50) NOT NULL,
- OWNER CHAR (50) NOT NULL,
- TIMESTAMP NUMERIC (19) NOT NULL
- ) IN NCCOG.NCDEFTS2 CCSID UNICODE;
- -------------------------------------------------------------------------------
- --$201-- indices create begin
- -------------------------------------------------------------------------------
- CREATE UNIQUE INDEX PR_RESOURCE_LOCK ON NC_RESOURCE_LOCK (LOCK_RESOURCE) ;
- -------------------------------------------------------------------------------
- --$202-- primary keys add begin
- -------------------------------------------------------------------------------
- ALTER TABLE NC_RESOURCE_LOCK ADD CONSTRAINT PR_RESOURCE_LOCK PRIMARY KEY (LOCK_RESOURCE);
- -------------------------------------------------------------------------------
- --$203-- alter tables begin
- -------------------------------------------------------------------------------
- -------------------------------------------------------------------------------
- --$210-- views create begin
- -------------------------------------------------------------------------------
- -------------------------------------------------------------------------------
- --$220-- server data inserts begin
- -------------------------------------------------------------------------------
- -------------------------------------------------------------------------------
- --$230-- restore inserts begin
- -------------------------------------------------------------------------------
- INSERT INTO NC_DB_VERSION (DB_VERSION_ID,BUILD) VALUES(1031,'build no.');
- -------------------------------------------------------------------------------
- --$250-- backup drop begin
- -------------------------------------------------------------------------------
- -------------------------------------------------------------------------------
- --$260-- end sql by function
- -------------------------------------------------------------------------------
- -- END NC1031_UPDATE_DB2.SQL * DO NOT EDIT *
- -------------------------------------------------------------------------------
|