dbInitMeta_db2.sql 972 B

1234567891011121314151617181920212223242526272829303132333435
  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 CMCRYPTOKEYS (
  12. CRYPTOKEY varchar(255) not null,
  13. CI_CRYPTOKEY varchar(255) not null,
  14. DATA blob(1G),
  15. constraint PK_CMCRYPTOKEYS primary key (CI_CRYPTOKEY)
  16. )
  17. create table CMCAKEYS (
  18. CAKEY varchar(255) not null,
  19. CI_CAKEY varchar(255) not null,
  20. DATA blob(1G),
  21. constraint PK_CMCAKEYS primary key (CI_CAKEY)
  22. )
  23. create table CMCAPROPS (
  24. PROPNAME varchar (50) not null,
  25. PROPINTVALUE integer not null,
  26. PROPVALUE clob (1G),
  27. CONSTRAINT PK_CMCAPROPS PRIMARY KEY (PROPNAME)
  28. )
  29. insert into CMCAPROPS (PROPNAME, PROPINTVALUE, PROPVALUE) values ('FRESHNESS', 0, NULL)