@@TEXTSIZE (Transact-SQL)
適用於:SQL Server Azure SQL 資料庫 Azure SQL 受控執行個體
傳回 TEXTSIZE 選項目前的值。
語法
@@TEXTSIZE
傳回型別
integer
範例
下列範例會使用 SELECT
來顯示在被 SET``TEXTSIZE
陳述式變更前後的 @@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