What is the best way to store a large amount of text in a SQL server table?

前端 未结 8 467
日久生厌
日久生厌 2020-12-15 15:19

What is the best way to store a large amount of text in a table in SQL server?

Is varchar(max) reliable?

8条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-15 15:54

    According to the text found here, varbinary(max) is the way to go. You'll be able to store approximately 2GB of data.

提交回复
热议问题