-
Suggestion
-
Resolution: Unresolved
-
None
-
None
-
1
-
Issue Summary
Ofbiz uses ntext data type for very-long, extremely-long, and text data types:
jira/jira-components/jira-core/src/main/ofbiz/entitydefs/fieldtype-mssql.xml
<field-type-def type="very-long" sql-type="NTEXT" java-type="String"></field-type-def> <field-type-def type="extremely-long" sql-type="NTEXT" java-type="String"></field-type-def> <field-type-def type="text" sql-type="NTEXT" java-type="String"></field-type-def>
According to Microsoft, ntext, text and image data types will be removed in a future version of SQL Server
Recommendation
Migrate these data types to either nvarchar(max), or varchar(max)
- relates to
-
JRASERVER-66618 NTEXT columns in AO_xxx tables on SQL Server are not migrated automatically to NVARCHAR columns when upgrading to 7.4
- Gathering Impact