1 Reply Latest reply on Mar 16, 2009 4:14 PM by aguizar

    Database Changes between 3.3.1 and 3.2.6

      I have just downloaded jBPM 3.2.6 SP1 after running 3.3.1, and have found that the Oracle database schema has changed, specifically replacing CLOB fields with VARCHAR2(4000) fields.

      I have been able to find Jira tickets for problems with 4000 char fields, (truncation etc) and fixes that use on Sybase TEXT fields instead of VARCHAR(4000), however I have not found anything about reverting from TEXT/CLOB back to fixed length fields.

      So, is there a specific reason for reverting back to 4000 char fields, or is this an unintended regression issue?

      Thanks in advance
      Steve

        • 1. Re: Database Changes between 3.3.1 and 3.2.6
          aguizar

           

          "insumo" wrote:
          I have just downloaded jBPM 3.2.6 SP1 after running 3.3.1, and have found that the Oracle database schema has changed, specifically replacing CLOB fields with VARCHAR2(4000) fields.

          Up to 3.2.3, large text fields were VARCHAR(4000). In 3.2.4 and 3.3.0 we tried to switch to CLOB due to the paging issues that such a large on-row field caused (e.g. Sybase). However, it turned out that many of our customers were reluctant to accept this change because it was drastic enough to break their apps. In the end we decided to restore the old schema.

          "insumo" wrote:
          I have been able to find Jira tickets for problems with 4000 char fields, (truncation etc) and fixes that use on Sybase TEXT fields instead of VARCHAR(4000), however I have not found anything about reverting from TEXT/CLOB back to fixed length fields.


          See https://jira.jboss.org/jira/browse/JBPM-2056