Is there any way to increase the character limit in the Notes field for Dynamics CRM 2013? Please advise.
Thank you.
*This post is locked for comments
I have the same question (0)Hi,
I am not sure but there is no supported way to increase the length of the note text field in Notes entity.
If you are using the on-promise CRM, then there is an unsupported way to increase the length of the notetext field in Notes entity
Alternatively you can try below SQL query update in CRM DB, it will increase the notetext length to 200000.
UPDATE AttributeView
SET MAXLENGTH = 200000
WHERE Name ='notetext'