05-24-2011 12:32 AM
05-24-2011 12:34 AM
05-24-2011 04:05 AM
Known upgrade limitation
In the DB schema creation scripts, we've enlarged the max size of certain varchar columns from 255 to 4000. See ACT-236. These schema updates are not part of the automatic upgrade procedure.
Max length of following columns has been set to 4000:
ACT_RU_JOB.EXCEPTION_MSG_
ACT_RU_JOB.HANDLER_CFG_
ACT_RE_PROCDEF.RESOURCE_NAME_
ACT_RE_PROCDEF.DGRM_RESOURCE_NAME_
ACT_RU_TASK.DESCRIPTION_
ACT_RU_VARIABLE.TEXT_
ACT_RU_VARIABLE.TEXT2_
ACT_HI_TASKINST.DESCRIPTION_
ACT_HI_TASKINST.DELETE_REASON_
ACT_HI_DETAIL.TEXT_
ACT_HI_DETAIL.TEXT2_
ACT_HI_COMMENT.MESSAGE_
ACT_HI_ATTACHMENT.DESCRIPTION_
ACT_HI_ATTACHMENT.URL_
If you want to perform these changes, you can do that manually. Check your database capabilities for the easiest way on changing the type of columns from varchar(255) to varchar(4000). As a fall back, for each table affected, you can:
create a new temporary table
copy the contents from the original to the temporary table
delete the original table
recreate the original table using the new create script with the proper lengths
copy the contents from the temporary table back to the new original table
drop the temporary table
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.