Hi Guys,
I have a requirement where the user has to fill in around 5000 characters in a paragraph field, is it possible to store 5000 characters to the database ?
Discussion posts and replies are publicly visible
Hi Jishnu Magunta
The total size of all fields in the table is more than the limit, 65535, that's why you are getting this error.they are two options:1.You should use text type instead of varchar for long strings.2.Or else you should decrease the limit of existing varchar fields and increase the field limit which ever you want.
Thanks baji mekala