1234567891011121314151617181920212223242526272829303132 |
- -- Licensed Materials - Property of IBM
- --
- -- BI and PM: CM
- --
- -- (C) Copyright IBM Corp. 2013
- --
- -- US Government Users Restricted Rights - Use, duplication or disclosure
- -- restricted by GSA ADP Schedule Contract with IBM Corp.
- create table CMOBJPROPS83 (
- CMID integer not null,
- MOBILECONFIG blob(4000),
- CONSTRAINT PK_CMOBJPROPS83 PRIMARY KEY (CMID)
- ) IN CMSCRIPT_CREATE_IN;
- CREATE UNIQUE INDEX PK_CMOBJPROPS83 ON CMOBJPROPS83 (CMID ASC) USING STOGROUP CMSCRIPT_STOGROUP;
- CREATE AUXILIARY TABLE CMATB114
- IN CMSCRIPT_DATABASE.CMSCRIPT_CS_IDCML114
- STORES CMOBJPROPS83
- COLUMN MOBILECONFIG;
-
- CREATE UNIQUE INDEX CMIDX114 ON CMATB114 USING STOGROUP CMSCRIPT_STOGROUP;
- insert into CMOBJPROPS83 (CMID) select CMID from CMOBJECTS where CLASSID = 4;
- !RunCMScript CMUpgradeScript_cognos_roles15_add.xml
- !RunCMScript CMUpgradeScript_cognos_roles15_update.xml
- !RunCMScript CMUpgradeScript_capabilities_55.xml
|