Click here to Skip to main content
15,891,372 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
What datatype is most appropriate to store multiline textmode in sql server 2008

What I have tried:

I tried the internet and searched for the above unfortunately no solution
Posted
Updated 17-Feb-16 20:33pm

1 solution

There is no such thing as multiple text mode. It is simply text with line feeds included. Therefore and of the text data types will support the storage of text with linefeeds. I would use VARCHAR(up to 8000) unless you expect records over 8000 characters then I would use VARCHAR(MAX)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900