123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- CREATE TABLE CMOBJPROPS48 (
- CMID number(10) NOT NULL,
- constraint PK_CMOBJPROPS48 primary key (CMID)
- );
- alter table CMOBJPROPS48 add ASCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add CMSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add DDSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add DISCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add DSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add IDSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add ISSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add IUSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add JSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add MBSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add MMSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add PACSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add PRSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add PTSCONNECTIONS number(10) null;
- alter table CMOBJPROPS48 add BRSCHHOTSPOTLIMIT number(10) null;
- alter table CMOBJPROPS48 add RSCHHOTSPOTLIMIT number(10) null;
- insert into CMOBJPROPS48(CMID) select CMID from CMOBJECTS where CLASSID in (4,34,14);
- insert into CMOBJPROPS48(CMID) select CMID from CMOBJECTS where CLASSID in (83,47,155,84,88,99,164,165,166,177,170,171,172,176,65,25);
- !RunCMScript CMUpgradeScript_configuration_update_8.xml
|