@@TEXTSIZE (Transact-SQL)
Se aplica a: SQL Server Azure SQL Database Azure SQL Managed Instance
Devuelve el valor actual de la opción TEXTSIZE.
Convenciones de sintaxis de Transact-SQL
Sintaxis
@@TEXTSIZE
Tipos de valor devuelto
integer
Ejemplos
En el ejemplo siguiente se utiliza SELECT
para mostrar el valor de @@TEXTSIZE
antes y después de su modificación con la instrucción 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'
Este es el conjunto de resultados.
Text Size
-----------
4096
Text Size
-----------
2048
Consulte también
Funciones de configuración (Transact-SQL)
SET TEXTSIZE (Transact-SQL)