use the sqlcmd utility to enter the following commands:
USE master Go EXEC sp_configure 'show advanced options' GO EXEC sp_configure filestream_access_level, 1 GO RECONFIGURE WITH OVERRIDE GO
There are 3 FILESTREAM access levels that are supported in SQL Server 2008, and they are listed below for your reference.
- When the specified value is 0, FILESTREAM support for the instance is disabled.
- When the specified value is 1, FILESTREAM for Transact-SQL Access is enabled
- When the specified value is 2, FILESTREAM for Transact-SQL and Windows Streaming is enabled
see this page ( http://www.mssqltips.com/tip.asp?tip=1838 ) for more information.
source share