SQL Server 2005 中 VARBINARY 字段的大小
我正在尝试使用 SQL 确定 SQL Server 2005 中 VARBINARY(MAX)
字段中内容的大小(以字节为单位).我怀疑是否有对此的本地支持,是否可以使用 CLR 集成来完成?任何想法将不胜感激.
I am trying to determine the size in bytes of the contents in a VARBINARY(MAX)
field in SQL Server 2005, using SQL. As I doubt there is native support for this, could it be done using CLR integration? Any ideas would be greatly appreciated.
推荐答案
实际上,你可以在 T-SQL 中做到这一点!
Actually, you can do this in T-SQL!
DATALENGTH(
将适用于 varbinary(max)
字段.
相关文章