1234567891011121314151617181920212223242526 |
- -- Licensed Materials - Property of IBM
- --
- -- BI and PM: CM
- --
- -- (C) Copyright IBM Corp. 2011
- --
- -- US Government Users Restricted Rights - Use, duplication or disclosure
- -- restricted by GSA ADP Schedule Contract with IBM Corp.
- create table CMOBJPROPS81 (
- CMID integer not null,
- AGGREGATES clob(1M),
- CONSTRAINT PK_CMOBJPROPS81 PRIMARY KEY (CMID)
- ) IN CMSCRIPT_CREATE_IN;
- CREATE UNIQUE INDEX PK_CMOBJPROPS81 ON CMOBJPROPS81 (CMID) USING STOGROUP CMSCRIPT_STOGROUP;
- CREATE AUXILIARY TABLE CMATB111
- IN CMSCRIPT_DATABASE.CMSCRIPT_CS_IDCML111
- STORES CMOBJPROPS81
- COLUMN AGGREGATES;
- CREATE UNIQUE INDEX CMIDX111 ON CMATB111 USING STOGROUP CMSCRIPT_STOGROUP;
- insert into CMOBJPROPS81 (CMID) select CMID from CMOBJECTS where CLASSID in (237,238,239);
|