Aracılığıyla paylaş


@@ TEXTSIZE (Transact-SQL)

Cari değerini döndürür textsize seçeneği.

Topic link iconTransact-SQL sözdizimi kuralları

@@TEXTSIZE

Dönüş Türleri

integer

Örnekler

The following example uses SELECT to display the @@TEXTSIZE value before and after it is changed with the SETTEXTSIZE 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.

Metin boyutu

-----------

4096

Metin boyutu

-----------

2048