Upgrade to 1.2 has been created by Matthieu Riou (Jul 11, 2008).

Content:

The upgrade path from 1.1 to 1.2 is relatively simple as there haven't any major change in the database or runtime models. Still, one column has been added so you will need to execute the following upgrade script (make sure to backup before to prevent any data loss):

alter table BPEL_SELECTORS add column (PROC_TYPE varchar(255));
update BPEL_PROCESS p, BPEL_CORRELATOR c, BPEL_SELECTORS s set s.PROC_TYPE = ('

Unknown macro: {' + p.type_ns + '}
' + p.type_name) where s.CORRELATOR = c.CID and c.PROCESS_ID = p.PROCID;

The update statement is only necessary if you have currently running instances. Once this is done, it's fairly simple:

  • Redeploy your new ODE 1.2 WAR.
  • Copy all the previous configuration and deployed processes (with the corresponding markers).

That's it!

Reply via email to