12345678910111213141516 |
- -- Licensed Materials - Property of IBM
- --
- -- BI and PM: CM
- --
- -- (C) Copyright IBM Corp. 2012
- --
- -- US Government Users Restricted Rights - Use, duplication or disclosure
- -- restricted by GSA ADP Schedule Contract with IBM Corp.
- CREATE TABLE CMOBJPROPS82 (
- CMID number(10) NOT NULL ,
- BPMRESTURI varchar2 (4000) NULL ,
- CONSTRAINT PK_CMOBJPROPS82 PRIMARY KEY (CMID)
- );
- insert into CMOBJPROPS82 (CMID) select CMID from CMOBJECTS where CLASSID in (4);
|