@@TEXTSIZE (Transact-SQL)
Retorna o valor atual da opção TEXTSIZE.
Convenções da sintaxe Transact-SQL
Sintaxe
@@TEXTSIZE
Tipos de retorno
integer
Exemplos
O exemplo a seguir usa SELECT para exibir o valor @@TEXTSIZE antes e depois que ele é alterado com a instrução SET 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'
Aqui está o conjunto de resultados.
Text Size
-----------
4096
Text Size
-----------
2048