@@TEXTSIZE (Transact-SQL)
Zwraca wartość bieżącą TEXTSIZE opcji.
@@TEXTSIZE
Zwracane typy
integer
Przykłady
The following example uses SELECT to display the @@TEXTSIZE value before and after it is changed with the SETTEXTSIZE statement.
-- 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'
Here is the result set.
Rozmiar tekstu
-----------
4096
Rozmiar tekstu
-----------
2048