Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Returns the current value of the TEXTSIZE option.
Transact-SQL Syntax Conventions
Syntax
@@TEXTSIZE
Return Types
integer
Examples
The following example uses SELECT to display the @@TEXTSIZE value before and after it is changed with the SET TEXTSIZE 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.
Text Size
-----------
4096
Text Size
-----------
2048