dbUpgrade6_0001-to-6_0002_db2zOS.sql 500 B

12345678910111213141516
  1. -- Licensed Materials - Property of IBM
  2. --
  3. -- BI and PM: CM
  4. --
  5. -- (C) Copyright IBM Corp. 2009
  6. --
  7. -- US Government Users Restricted Rights - Use, duplication or disclosure
  8. -- restricted by GSA ADP Schedule Contract with IBM Corp.
  9. CREATE TABLE CMSPLIT (
  10. CMID int not null,
  11. TRANSACTIONID varchar(255) not null,
  12. constraint PK_CMSPLIT primary key (CMID, TRANSACTIONID)
  13. ) IN CMSCRIPT_CREATE_IN;
  14. CREATE UNIQUE INDEX PK_CMSPLIT ON CMSPLIT (CMID, TRANSACTIONID) USING STOGROUP CMSCRIPT_STOGROUP;