Filestream使用简单步骤总结

 为了减少大文件在数据库的存储对数据库的读写效率造成的压力,多了filestream这一个功能,下面介绍一下如何快速使用filestream。

1、开启sqlserver实例对filestream 的开关,具体开关在 sql server配置管理器里面,都打开。

 

2、打开ssms 在实例配置 ,这样就打开了filestream的选项

3、添加支持filestream 的文件组

alter database testdb 
add filegroup filestreamfilegroup contain filestream


然后往文件组添加文件
 
alter database testdb add file (name=file2,filename='path') to filegroup filestreamfg

4、现在就可以创建关于filestream的表了

create table testtb
(
    id uniqueidentifier rowguid primary key,
    filedata varbinary(max) filestream
)

--好的哟~这样就创建了一张能使用的filestream表了

insert into testtb
(id,filedate) 
values(newid(),cast('12345jonanofe' as varbinary(max)))

到此这篇关于sqlserver filestream使用简单步骤总结的文章就介绍到这了,更多相关sqlserver filestream使用内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐