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 lvarchar(256),
- primary key (CMID, ORD) constraint PK_CMTAGS
- ) lock mode row;
- create index IDX_CMTAGS on CMTAGS(CMID, TAG);
|