微软研究公司的一份真正好的论文称为。 To Blub or Not To Blu。
Their conclusion after a large number of performance tests and analysis is this:
if your pictures or document are typically below 256K in size, storing them in a database VARBINARY column is more efficient
if your pictures or document are typically over 1 MB in size, storing them in the filesystem is more efficient (and with SQL Server 2008 s FILESTREAM attribute, they re still under transactional control and part of the database)
在这两者之间,视您的使用情况而定,这只是一个 to子。
如果你决定将照片列入服务器表,我将强烈建议使用单独的表格储存这些照片——不把雇员的同位素储存在雇员桌上——将其保留在一个单独的桌子上。 这样,如果你不总是需要选择雇员的同位素,作为你询问的一部分,雇员表格可以保持精干、平均和高效。
关于档案组,请查看Files和Filegroup Construction。 基本上,你会创建自己的数据库,从一开始就建立一个单独的大型数据结构档案组,或以后再增加一个档案组。 让我们称之为“LARGE_DATA”。
现在,如果你有一个新表格,以制作需要储存VARCHAR(得奖)或VARBINaire(得票)一栏的新表格,你可以说明这一大数据档案组:
CREATE TABLE dbo.YourTable
(....... define the fields here ......)
ON Data -- the basic "Data" filegroup for the regular data
TEXTIMAGE_ON LARGE_DATA -- the filegroup for large chunks of data
检查档案组内的MSDN,并与它一起玩!!