dbUpgrade2_0027-to-2_0028_oracle.sql 1.4 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 number(3) null
  12. alter table CMOBJPROPS31 add PRSAUDITLVL number(3) null
  13. alter table CMOBJPROPS31 add PTSAUDITLVL number(3) null
  14. CREATE TABLE CMOBJPROPS40 (
  15. CMID number(10) NOT NULL ,
  16. APPGUID varchar2 (50) NULL ,
  17. APPID varchar2 (768) NULL ,
  18. APPSTATE number(3) NULL ,
  19. APPURL varchar2 (4000) NULL ,
  20. CONSTRAINT PK_CMOBJPROPS40 PRIMARY KEY (CMID)
  21. )
  22. CREATE TABLE CMOBJPROPS41 (
  23. CMID number(10) NOT NULL,
  24. DEPTH number(10) null,
  25. ITEMID varchar2 (768) NULL,
  26. PARENTID varchar2 (768) NULL,
  27. CONSTRAINT PK_CMOBJPROPS41 PRIMARY KEY (CMID)
  28. )
  29. CREATE TABLE CMOBJPROPS42 (
  30. CMID number(10) NOT NULL,
  31. SPEC clob NULL,
  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