Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.38 KB

sql-server-binary-large-value-data.md

File metadata and controls

29 lines (23 loc) · 1.38 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic
SQL Server binary and large-value data
Describes how to work with large value data in SQL Server.
David-Engel
v-davidengel
v-kaywon
08/15/2019
sql
connectivity
conceptual

SQL Server binary and large-value data

[!INCLUDEDriver_ADONET_Download]

SQL Server provides the max specifier, which expands the storage capacity of the varchar, nvarchar, and varbinary data types. varchar(max), nvarchar(max), and varbinary(max) are collectively called large-value data types. You can use the large-value data types to store up to 2^31-1 bytes of data.

SQL Server 2008 introduces the FILESTREAM attribute, which is not a data type, but rather an attribute that can be defined on a column, allowing large-value data to be stored on the file system instead of in the database.

In this section

Modifying large-value (max) data in ADO.NET
Describes how to work with the large-value data types.

FILESTREAM data
Describes how to work with large-value data stored in SQL Server 2008 with the FILESTREAM attribute.

Next steps