Varchar 的最大大小(max)
在 SQL Server 2008 R2(64 位)上,varchar(max) 的最大大小是多少?
我知道在 8K 之后它会进入溢出页面,但我不知道总共可以放入多少个字符。
On SQL Server 2008 R2 (64 bit) what is the max size of a varchar(max)?
I know that after 8K it goes to an overflow page, but I don't know how many chars I can put in over all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MAX 类型可容纳 2GB 数据。请参阅 MSDN。
the MAX types can accomodate 2GB of data. See MSDN.
在调用 SQL 之前从 .Net 进行验证,它将是
int.MaxValue
Validating from .Net prior to calling SQL it will be
int.MaxValue