@@TEXTSIZE (Transact-SQL)
返回 TEXTSIZE 选项的当前值。
语法
@@TEXTSIZE
返回类型
integer
示例
以下示例使用 SELECT 语句来显示使用 SETTEXTSIZE 语句更改前后的 @@TEXTSIZE 值。
-- Set the TEXTSIZE option to the default size of 4096 bytes.
SET TEXTSIZE 0
SELECT @@TEXTSIZE AS 'Text Size'
SET TEXTSIZE 2048
SELECT @@TEXTSIZE AS 'Text Size'
下面是结果集。
Text Size
-----------
4096
Text Size
-----------
2048