我应该使用什么 SQL Server 数据类型来存储字节 []

What SQL Server Datatype Should I Use To Store A Byte[](我应该使用什么 SQL Server 数据类型来存储字节 [])
本文介绍了我应该使用什么 SQL Server 数据类型来存储字节 []的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我想在我的 SQL Server 中存储一个字节数组.您建议使用哪种数据类型或插入前操作来存储这些数据?

我不希望这些 byte[] 的长度超过 1024.

解决方案

varbinary(1024) 正是您要找的.

SQL Server 中二进制值存储有三种类型:

binary(n) 用于长度为 n 的固定长度二进制数据.长度可以是18000.
varbinary(n) 用于可变长度的二进制数据最大长度n.最大长度可以是 18000.
以上类型将存储在行数据本身中.varbinary(max) 用于存储高达 2GB 的大二进制值 (BLOB).如果实际值大于 8000 字节并且仅指针存储在行本身中,则实际值存储在单独的位置.此类型自 SQL Server 2005 起可用.

image 数据类型在 SQL Server 2005 之前用于存储 BLOB.它已被弃用,取而代之的是 varbinary(max).image 的存储位置总是在数据行之外.

I want to store an array of bytes in my SQL Server. What datatype, or pre INSERT manipulation would you suggest to store these?

I wouldn't expect these byte[] to exceed 1024 in length.

解决方案

varbinary(1024) is what you're looking for.

There are three types in SQL Server for binary value storage:

binary(n) for fixed-length binary data of length n. Length can be 1 to 8000.
varbinary(n) for variable-length binary data maximum length n. Maximum length can be 1 to 8000.
Above types will be stored in the row data itself. varbinary(max) which is used to store large binary values (BLOBs) up to 2GB. The actual value is stored in a separate location if it's larger than 8000 bytes and just a pointer is stored in the row itself. This type is available since SQL Server 2005.

image data type was used to store BLOBs prior to SQL Server 2005. It's deprecated in favor of varbinary(max). The storage location for image is always outside data row.

这篇关于我应该使用什么 SQL Server 数据类型来存储字节 []的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Query with t(n) and multiple cross joins(使用 t(n) 和多个交叉连接进行查询)
Unpacking a binary string with TSQL(使用 TSQL 解包二进制字符串)
Max rows in SQL table where PK is INT 32 when seed starts at max negative value?(当种子以最大负值开始时,SQL 表中的最大行数其中 PK 为 INT 32?)
Inner Join and Group By in SQL with out an aggregate function.(SQL 中的内部连接和分组依据,没有聚合函数.)
Add a default constraint to an existing field with values(向具有值的现有字段添加默认约束)
SQL remove from running total(SQL 从运行总数中删除)