Adjust the size of the Predicate field (DB2 users upgrading from 7.x only)
If you are upgrading a DB2 user database from Interact 7.x to any 8.x version or higher, you must run a SQL statement manually against the user database before continuing.
*
Before executing the following SQL code, you may need to adjust the size of the varchar field (Predicate) to make sure the total width of this table does not exceed the page size where this table (UACI_ScoreOverride) resides.
The SQL code to execute against the DB2 user database is listed here:
ALTER TABLE UACI_ScoreOverride
ADD Predicate varchar(4000)
ADD FinalScore float
ADD EnableStateID int;