-- Licensed Materials - Property of IBM -- -- BI and PM: CM -- -- (C) Copyright IBM Corp. 2008, 2009 -- -- US Government Users Restricted Rights - Use, duplication or disclosure -- restricted by GSA ADP Schedule Contract with IBM Corp. -- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved. -- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated). alter table CMOBJPROPS65 drop constraint PK_CMOBJPROPS65 rename CMOBJPROPS65 to CMOBJPROPS65_OLD create table CMOBJPROPS65 ( CMID integer not null, BURSTID varchar (3869), BURSTIDINDEX character (44), constraint PK_CMOBJPROPS65 primary key (CMID) ) insert into CMOBJPROPS65(CMID, BURSTID) select CMID, BURSTID from CMOBJPROPS65_OLD create INDEX IDX_BURSTIDINDEX on CMOBJPROPS65(BURSTIDINDEX) drop table CMOBJPROPS65_OLD