dbUpgrade6_0023-to-7_0001_oracle.sql 503 B

12345678910111213141516171819
  1. -- Licensed Materials - Property of IBM
  2. --
  3. -- BI and PM: CM
  4. --
  5. -- (C) Copyright IBM Corp. 2011, 2013
  6. --
  7. -- US Government Users Restricted Rights - Use, duplication or disclosure
  8. -- restricted by GSA ADP Schedule Contract with IBM Corp.
  9. create table TEMPCMREFORD2 (
  10. CMID number(10) not null,
  11. ORD number(10) not null,
  12. REFCMID number(10) not null);
  13. insert into TEMPCMREFORD2 select CMID, ORD, REFCMID from CMREFORD2;
  14. drop table CMREFORD2;
  15. alter table TEMPCMREFORD2 rename to CMREFORD2;