1234567891011121314151617181920 |
- -- 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 int not null,
- ORD int not null,
- TAG nvarchar(256) null,
- constraint PK_CMTAGS primary key (CMID,ORD)
- )
- create index IDX_CMTAGS on CMTAGS(CMID, TAG)
|