dbInitMeta_informix.sql 1005 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 lvarchar(255) not null,
  13. CI_CRYPTOKEY lvarchar(255) not null,
  14. DATA blob,
  15. primary key (CRYPTOKEY) constraint PK_CMCRYPTOKEYS
  16. ) lock mode row;
  17. create table CMCAKEYS (
  18. CAKEY lvarchar(255) not null,
  19. CI_CAKEY lvarchar(255) not null,
  20. DATA blob,
  21. primary key (CAKEY) constraint PK_CMCAKEYS
  22. ) lock mode row;
  23. create table CMCAPROPS (
  24. PROPNAME lvarchar (50) not null,
  25. PROPINTVALUE integer not null,
  26. PROPVALUE clob,
  27. primary key (PROPNAME) constraint PK_CMCAPROPS
  28. ) lock mode row;
  29. insert into CMCAPROPS (PROPNAME, PROPINTVALUE, PROPVALUE) values ('FRESHNESS', 0, NULL);