1234567891011121314151617 |
- -- Licensed Materials - Property of IBM
- --
- -- BI and PM: CM
- --
- -- (C) Copyright IBM Corp. 2017
- --
- -- US Government Users Restricted Rights - Use, duplication or disclosure
- -- restricted by GSA ADP Schedule Contract with IBM Corp.
- CREATE TABLE CMTAGS (
- CMID integer not null,
- ORD integer not null,
- TAG varchar(256),
- constraint PK_CMTAGS primary key (CMID,ORD)
- )
- create index IDX_CMTAGS on CMTAGS(CMID, TAG)
|