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 number(10) not null,
- ORD number(10) not null,
- TAG varchar2(256) null,
- constraint PK_CMTAGS primary key (CMID, ORD)
- );
- create index IDX_CMTAGS on CMTAGS(CMID, TAG);
|