Just run this sql statement
===========================================
BEGIN TRAN
-- Convert a field to an email body and thus remove the
-- limit check in the platform
UPDATE MetadataSchema.Attribute SET MaxLength = 1073741823,
AttributeLogicalTypeId = 'emailbody' WHERE [name] in ('crmattributeid' )
COMMIT TRAN
==============================================
Warning:
ReplyDeleteafter this update, you may have to change sql type of an attribute to ntext, coz it still nvarchar
(MetadataSchema.AttributeTypes table for values)
and you have to alter SQL table to enable nvarchar(max) on your column
ReplyDeleteHi Eugene,
ReplyDeleteThanks for your suggestion.