@@TEXTSIZE (Transact-SQL)
Retourne la valeur actuelle de l'option TEXTSIZE.
Conventions de syntaxe Transact-SQL
Syntaxe
@@TEXTSIZE
Types de retour
integer
Exemple
L'exemple suivant utilise SELECT pour afficher la valeur @@TEXTSIZE avant et après sa modification avec l'instruction 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'
Voici l'ensemble des résultats.
Text Size
-----------
4096
Text Size
-----------
2048