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,
- primary key (CMID) constraint PK_CMOBJPROPS90
- ) lock mode row;
- CREATE TABLE CMOBJPROPS91 (
- CMID integer not null,
- SKDATA clob,
- primary key (CMID) constraint PK_CMOBJPROPS91
- ) lock mode row;
|