tags:

views:

1753

answers:

2

What is the max size of the multi line text field? Can I set it?

+1  A: 

A multi line text field is Defined in sharepoint as a 'Note' type, this is stored in the the DB as a ntext sql type.

In the SQL type can store 2gb of char data, that's 1,073,741,823 characters.

Obviously there are practical limits on how big this data should be allowed to get - as SP is a web based system, you do not want to be passing 2gb back and forth all the time.

You can't set it, but you could use a workflow to check the size of the data in the fields and ether truncate or warn about the size of the field.

Adrian
A: 

I agree. And I am using the second solution--warning.

tag