dbUpgrade4_0021-to-4_0022_mssqlserver.sql 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. --CMSCRIPT_UPGRADE_SKIP_COMMAND(3.0063,4.0001)
  12. alter table CMOBJPROPS31 add PDSAUDITLVL tinyint NULL
  13. --CMSCRIPT_UPGRADE_SKIP_COMMAND(3.006801,4.0001)
  14. alter table CMOBJPROPS48 add PDSCONNECTIONS int NULL
  15. --CMSCRIPT_UPGRADE_SKIP_COMMAND(3.0063,4.0001)
  16. CREATE TABLE CMOBJPROPS58 (
  17. CMID int NOT NULL ,
  18. PDSELISTAXSCACHE int NULL,
  19. PDSSHOWCELLANN bit NULL,
  20. PDSMAXPROCS int NULL,
  21. CONSTRAINT PK_CMOBJPROPS58 PRIMARY KEY (CMID)
  22. )
  23. --CMSCRIPT_UPGRADE_SKIP_COMMAND(3.0063,4.0001)
  24. INSERT INTO CMOBJPROPS58(CMID) SELECT CMID FROM CMOBJECTS WHERE CLASSID IN (4, 14, 34)
  25. --CMSCRIPT_UPGRADE_SKIP_COMMAND(3.0063,4.0001)
  26. !RunCMScript CMUpgradeScript_configuration_update_11.xml
  27. --CMSCRIPT_UPGRADE_SKIP_COMMAND(3.006801,4.0001)
  28. !RunCMScript CMUpgradeScript_configuration_update_11_2.xml