@@TEXTSIZE (Transact-SQL)
S’applique à : SQL Server Azure SQL Database Azure SQL Managed Instance
Renvoie la valeur actuelle de l’option TEXTSIZE.
Conventions de la syntaxe Transact-SQL
Syntaxe
@@TEXTSIZE
Types de retour
integer
Exemples
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 le jeu de résultats.
Text Size
-----------
4096
Text Size
-----------
2048
Voir aussi
Fonctions de configuration (Transact-SQL)
SET TEXTSIZE (Transact-SQL)