dbUpgrade7_0047-to-7_0048_db2zOS.sql 574 B

12345678910111213141516171819
  1. -- Licensed Materials - Property of IBM
  2. --
  3. -- BI and PM: CM
  4. --
  5. -- (C) Copyright IBM Corp. 2017
  6. --
  7. -- US Government Users Restricted Rights - Use, duplication or disclosure
  8. -- restricted by GSA ADP Schedule Contract with IBM Corp.
  9. CREATE TABLE CMTAGS (
  10. CMID integer not null,
  11. ORD integer not null,
  12. TAG varchar(256),
  13. constraint PK_CMTAGS primary key (CMID, ORD)
  14. ) IN CMSCRIPT_CREATE_IN;
  15. CREATE UNIQUE INDEX PK_CMTAGS ON CMTAGS (CMID, ORD) USING STOGROUP CMSCRIPT_STOGROUP;
  16. CREATE INDEX IDX_CMTAGS on CMTAGS(CMID, TAG) USING STOGROUP CMSCRIPT_STOGROUP;