dbUpgrade5_0011-to-5_0012_informix.sql 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. -- Licensed Materials - Property of IBM
  2. --
  3. -- BI and PM: CM
  4. --
  5. -- (C) Copyright IBM Corp. 2008, 2009
  6. --
  7. -- US Government Users Restricted Rights - Use, duplication or disclosure
  8. -- restricted by GSA ADP Schedule Contract with IBM Corp.
  9. -- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  10. -- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  11. CREATE TABLE CMOBJPROPS75 (
  12. CMID integer not null,
  13. RESOURCETYPE lvarchar (512),
  14. SPEC blob,
  15. PRIMARY KEY (CMID) CONSTRAINT PK_CMOBJPROPS75
  16. ) lock mode row;
  17. create index CMSCRIPT_CS_IDIDX_RESOURCETYPE on CMOBJPROPS75(RESOURCETYPE);
  18. CREATE TABLE CMOBJPROPS76 (
  19. CMID integer not null,
  20. CONTENTTYPE lvarchar (512),
  21. PRIMARY KEY (CMID) CONSTRAINT PK_CMOBJPROPS76
  22. ) lock mode row;
  23. CREATE TABLE CMOBJPROPS78 (
  24. CMID integer not null,
  25. BINDINGNAME lvarchar (512),
  26. INPUTMESSNAME lvarchar (512),
  27. OPERATIONNAME lvarchar (512),
  28. OUTPUTMESSNAME lvarchar (512),
  29. SERVICENAME lvarchar (512),
  30. BULKEVENTS decimal(1,0),
  31. URI clob,
  32. PRIMARY KEY (CMID) CONSTRAINT PK_CMOBJPROPS78
  33. ) lock mode row;
  34. insert into CMOBJPROPS76 (CMID) select CMID from CMOBJECTS where CLASSID = 20