I had to enable Remote Blob Storage on my farm. I'm following this tutorial:
http://technet.microsoft.com/en-us/library/ee663474.aspx#enable
And also this one:
http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?ID=174
I use administrator account to Enable Filestream:
DBProperties-> Advanced -> Filestream AccessLevel -> FullAccessEnabled
I restart the SQL Server Instance,but when I try to execute:
use [WSS_Content_Blob]
if not exists (select * from sys.symmetric_keys where name = '##MS_DatabaseMasterKey##')create master key encryption by password = N'Admin Key Password !2#4'
use [WSS_Content_Blob]
if not exists (select groupname from sysfilegroups where groupname=N'RBSFilestreamProvider')alter database [WSS_Content_Blob]
add filegroup RBSFilestreamProvider contains filestream
use [WSS_Content_Blob]
alter database [WSS_Content_Blob] add file (name = RBSFilestreamFile, filename = 'c:\Blobstore') to filegroup RBSFilestreamProvider
It tolds me that the Filestream service is not enables... How can I fix it?