dbUpgrade2_0027-to-2_0028_db2.sql 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. alter table CMOBJPROPS31 add PACSAUDITLVL smallint
  12. alter table CMOBJPROPS31 add PRSAUDITLVL smallint
  13. alter table CMOBJPROPS31 add PTSAUDITLVL smallint
  14. CREATE TABLE CMOBJPROPS40 (
  15. CMID integer not null,
  16. APPGUID varchar(50),
  17. APPID varchar (512),
  18. APPSTATE smallint,
  19. APPURL clob (4000),
  20. constraint PK_CMOBJPROPS40 primary key (CMID)
  21. )
  22. CREATE TABLE CMOBJPROPS41 (
  23. CMID integer not null,
  24. DEPTH integer,
  25. ITEMID varchar (512),
  26. PARENTID varchar (512),
  27. CONSTRAINT PK_CMOBJPROPS41 primary key (CMID)
  28. )
  29. CREATE TABLE CMOBJPROPS42 (
  30. CMID integer not null,
  31. SPEC clob(1G),
  32. constraint PK_CMOBJPROPS42 primary key (CMID)
  33. )
  34. !RunCMScript CMUpgradeScript_configuration_update_4.xml
  35. !RunCMScript CMUpgradeScript_cognos_roles2_add.xml
  36. !RunCMScript CMUpgradeScript_cognos_roles2_update.xml
  37. !RunCMScript CMUpgradeScript_capabilities_22_add.xml
  38. !RunCMScript CMUpgradeScript_capabilities_22_update.xml