@@TEXTSIZE (Transact-SQL)
Retourne la valeur actuelle de l'option TEXTSIZE.
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 SETTEXTSIZE.
-- 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.
Taille de texte
-----------
4096
Taille de texte
-----------
2048