<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Bug in oracle-DDL's in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186803#M139933</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Harry,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had the similar problem -&amp;gt; &lt;/SPAN&gt;&lt;A href="https://github.com/Activiti/Activiti/pull/401" rel="nofollow noopener noreferrer"&gt;https://github.com/Activiti/Activiti/pull/401&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Oct 2014 05:26:57 GMT</pubDate>
    <dc:creator>martin_grofcik</dc:creator>
    <dc:date>2014-10-07T05:26:57Z</dc:date>
    <item>
      <title>Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186802#M139932</link>
      <description>Hi activiti-team,we had a problem to store string variables with length greater than 2000 chars. An exception&amp;nbsp; occurs only on oracle databases, with MySQL, H2, etc. it works as expected. After a while, we found the reason: All DDL define varchars with 4000 chars, only the oracle DDL Scripts create t</description>
      <pubDate>Mon, 06 Oct 2014 08:58:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186802#M139932</guid>
      <dc:creator>hbraun</dc:creator>
      <dc:date>2014-10-06T08:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186803#M139933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Harry,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had the similar problem -&amp;gt; &lt;/SPAN&gt;&lt;A href="https://github.com/Activiti/Activiti/pull/401" rel="nofollow noopener noreferrer"&gt;https://github.com/Activiti/Activiti/pull/401&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 05:26:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186803#M139933</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2014-10-07T05:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186804#M139934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Martin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried the database patch, but oracle returned an error message for NVARCHAR2(4000):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-00910: specified length too long for its datatype&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, there is still a problem using the oracle database with activiti. We can't exclude strings with 2000-4000 chars. I also tried to override StringType and LongStringType with customPreVariableTypes, but the method only add a type, not replace the type.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Harry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 15:34:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186804#M139934</guid>
      <dc:creator>hbraun</dc:creator>
      <dc:date>2014-10-08T15:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186805#M139935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Harry,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's strange. I have tested it with oracle database and jUnit tests. (and tests passed) I would prefer DB patch instead of configuration changes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to set &lt;/SPAN&gt;&lt;CODE&gt;LongStringType&lt;/CODE&gt;&lt;SPAN&gt; length to 2000, change it in &lt;/SPAN&gt;&lt;CODE&gt;customPreVariableTypes&lt;/CODE&gt;&lt;SPAN&gt; in process engine configuration.&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;nbsp; protected void initVariableTypes() {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (variableTypes==null) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; variableTypes = new DefaultVariableTypes();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (customPreVariableTypes!=null) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (VariableType customVariableType: customPreVariableTypes) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; variableTypes.addType(customVariableType);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; variableTypes.addType(new NullType());&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; variableTypes.addType(new StringType(4000));&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; variableTypes.addType(new LongStringType(4001));&lt;BR /&gt;…&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 05:17:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186805#M139935</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2014-10-09T05:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186806#M139936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Martin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know the code snippet, but we use activiti as a component with different databases, patching activiti isn't the preferred way. Patching the oracle scripts would be perfect, but oracle 11.2 rejects our DDL. I'm not an oracle expert, but I think NVARCHAR depends on the codepage. Perhaps varchar(4000) will fix it, but if there're side effects?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In my opinion, this is a critical bug in activiti. Using activiti 5.16.1 with oracle in production environment is dangerous. If you're lucky, all variables are smaller than 2000 or greater than 4000 chars. The day will come and somebody want to store a variable with 2001 chars, the system throws an exception and your well tested workflow break&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Btw. there are other fields with length 2000 in oracle and 4000 in other databases, perhaps the variables are the first visible side effect.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Harry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 09:02:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186806#M139936</guid>
      <dc:creator>hbraun</dc:creator>
      <dc:date>2014-10-09T09:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186807#M139937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Harry,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can only agree with you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Another possibility is to lower default string size limit to 2000 for all DBs and change DDLs to 2000. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(the side effect is that large strings are not taken into account for queries (variableValue….))&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 06:37:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186807#M139937</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2014-10-10T06:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186808#M139938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Harry,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't agree that this is an critical bug. If Oracle is used in production it should also be used in your testing to my opinion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The reason for the 2000 limit is the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"So an NVARCHAR2( 2000 ) with an AL16UTF16 national character set would occupy the maximum 4000 bytes and allow you to encode 2000 Unicode characters."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We might need to change the LongStringType logic in the Engine, so that we switch to LongStringType for Oracle already above 2000 characters, instead of above 4000, which is the logic right now. We'll investigate this further and will implement a fix.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 07:28:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186808#M139938</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2014-10-10T07:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186809#M139939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Tijs,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;we stopped using activiti with oracle db and stopped any activiti updates until the bug is fixed, in our case this issue is critical. Switching the database is not an option in financial sector, switching the BPMN-Engine is my next project. (But the target engine is activiti &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If LongStringType uses 2000 characters for oracle it would be perfect. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Should I open a jira issue?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Harry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:13:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186809#M139939</guid>
      <dc:creator>hbraun</dc:creator>
      <dc:date>2014-10-10T09:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186810#M139940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, please. or a pull request would even be better &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 10:22:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186810#M139940</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2014-10-17T10:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186811#M139941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well, you're already assigend to &lt;/SPAN&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-2129" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/browse/ACT-2129&lt;/A&gt;&lt;SPAN&gt; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Harry&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 10:35:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186811#M139941</guid>
      <dc:creator>hbraun</dc:creator>
      <dc:date>2014-10-17T10:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186812#M139942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Damn auto-assignment of jira &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 08:44:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186812#M139942</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2014-10-20T08:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186813#M139943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Joram, Harry,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I would say that it is configuration issue. &lt;/SPAN&gt;&lt;CODE&gt;customPreVariableTypes&lt;/CODE&gt;&lt;SPAN&gt; in activiti process engine configuration can override default behavior.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;util:list id="preVariableTypes"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;bean class="org.activiti.engine.impl.variable.NullType"/&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;bean class="org.activiti.engine.impl.variable.StringType"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;constructor-arg value="2000"/&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/bean&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;bean class="org.activiti.engine.impl.variable.LongStringType"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;constructor-arg value="2001"/&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/bean&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/util:list&amp;gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2014 07:08:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186813#M139943</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2014-10-21T07:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186814#M139944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Martin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;after adding customPreVariableTypes,&amp;nbsp; acitiviti adds the standard types with String(4000) and LongString(4001), see posting #4. AddType override the type in the hashtable, but add a second one to the list. So you can't override a standard type safely.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Harry &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2014 07:51:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186814#M139944</guid>
      <dc:creator>hbraun</dc:creator>
      <dc:date>2014-10-21T07:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186815#M139945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I did comment on the Issue: &lt;/SPAN&gt;&lt;A href="http://jira.codehaus.org/i#browse/ACT-2129" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/i#browse/ACT-2129&lt;/A&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;A href="https://github.com/Activiti/Activiti/pull/401" rel="nofollow noopener noreferrer"&gt;https://github.com/Activiti/Activiti/pull/401&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hopefully there will be a good solution found for this problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Philippe&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2015 10:31:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186815#M139945</guid>
      <dc:creator>fandji</dc:creator>
      <dc:date>2015-01-14T10:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186816#M139946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Harry,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;yes, but custom types are applied first so default types are not used for the Strings.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2015 11:04:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186816#M139946</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2015-01-14T11:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186817#M139947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Philippe,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I put my comment there already too.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="https://github.com/Activiti/Activiti/pull/401" rel="nofollow noopener noreferrer"&gt;https://github.com/Activiti/Activiti/pull/401&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2015 11:06:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186817#M139947</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2015-01-14T11:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186818#M139948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We still use Activiti 5.17. Can I modify the Oracle datatype to VARCHAR(4000)? because I have a customer that can't change NATIONAL CHARACTER SET. So the max value to NVARCHAR type in this instance is 2000.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2016 19:30:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186818#M139948</guid>
      <dc:creator>denisgmarques</dc:creator>
      <dc:date>2016-05-09T19:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in oracle-DDL's</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186819#M139949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sure, that won't be a probem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2016 10:24:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/bug-in-oracle-ddl-s/m-p/186819#M139949</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2016-05-10T10:24:48Z</dc:date>
    </item>
  </channel>
</rss>

