1234567891011121314151617181920 |
- -- Licensed Materials - Property of IBM
- --
- -- BI and PM: CM
- --
- -- (C) Copyright IBM Corp. 2019
- --
- -- US Government Users Restricted Rights - Use, duplication or disclosure
- -- restricted by GSA ADP Schedule Contract with IBM Corp.
- create table CMOBJPROPS90 (
- CMID integer not null,
- SPEC clob(1M),
- CONSTRAINT PK_CMOBJPROPS90 PRIMARY KEY (CMID)
- )
- create table CMOBJPROPS91 (
- CMID integer not null,
- SKDATA clob(1M),
- CONSTRAINT PK_CMOBJPROPS91 PRIMARY KEY (CMID)
- )
|