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