I am migrating some SQL queries from Oracle to DB2 UDB 8.
Here is the SQL query:
create unique index ACT_UNIQ_RU_BUS_KEY on ACT_RU_EXECUTION
(case when BUSINESS_KEY_ is null then null else PROC_DEF_ID_ end,
case when BUSINESS_KEY_ is null then null else BUSINESS_KEY_ end);
Does anybody know what could be a equivalent SQL in DB2 UDB 8.x?
FYI: This is an SQL query I am creating for Activiti BPM tool.
