123456789101112131415161718 |
- -- Licensed Materials - Property of IBM
- --
- -- BI and PM: CM
- --
- -- (C) Copyright IBM Corp. 2016
- --
- -- US Government Users Restricted Rights - Use, duplication or disclosure
- -- restricted by GSA ADP Schedule Contract with IBM Corp.
- CREATE TABLE CMARCHIVESTATUS (
- CMID integer NOT NULL,
- ARCHSTAT smallint default 0 not null,
- primary key (CMID) constraint PK_CMARCHIVESTATUS
- ) lock mode row;
- insert into CMARCHIVESTATUS (CMID) select CMID from CMOBJECTS where CLASSID in (179);
- insert into CMARCHIVESTATUS (CMID) select CMID from CMOBJECTS where CLASSID in (27);
|