Click to Rate and Give Feedback
MSDN
MSDN Library
SQL Server
SQL Server 2008
Database Engine
Development
 How to: Enable FILESTREAM
Community Content
In this section
Statistics Annotations (2)
Collapse All/Expand All Collapse All
SQL Server 2008 Books Online (October 2009)
How to: Enable FILESTREAM

Before you can start to use FILESTREAM, you must enable FILESTREAM on the instance of the SQL Server Database Engine. This topic describes how to enable FILESTREAM by using SQL Server Configuration Manager.

  1. On the Start menu, point to All Programs, point to Microsoft SQL Server 2008, point to Configuration Tools, and then click SQL Server Configuration Manager.

  2. In the list of services, right-click SQL Server Services, and then click Open.

  3. In the SQL Server Configuration Manager snap-in, locate the instance of SQL Server on which you want to enable FILESTREAM.

  4. Right-click the instance, and then click Properties.

  5. In the SQL Server Properties dialog box, click the FILESTREAM tab.

  6. Select the Enable FILESTREAM for Transact-SQL access check box.

  7. If you want to read and write FILESTREAM data from Windows, click Enable FILESTREAM for file I/O streaming access. Enter the name of the Windows share in the Windows Share Name box.

  8. If remote clients must access the FILESTREAM data that is stored on this share, select Allow remote clients to have streaming access to FILESTREAM data.

  9. Click Apply.

  10. In SQL Server Management Studio, click New Query to display the Query Editor.

  11. In Query Editor, enter the following Transact-SQL code:

    EXEC sp_configure filestream_access_level, 2
    RECONFIGURE
  12. Click Execute.

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Filestream_Access_Levels      William Vaughn   |   Edit   |   Show History

See http://msdn.microsoft.com/en-us/library/cc645956.aspx for filestream_access_level

Basically:


•0 : Disables instance FILESTREAM support
•1 : Enables FILESTREAM TSQL support
•2 : Enables FILESTREAM TSQL and streaming

Following steps for enable filestream gets error:      PerryNewton ... Tai Yee - MSFT   |   Edit   |   Show History

Msg 15123, Level 16, State 1, Procedure sp_configure, Line 51

The configuration option 'filestream_access_level' does not exist, or it may be an advanced option.


I am a newbie to SQL Server and am sure that there must be a step to point to Stored Proc location that I am missing. Thanks.

Nevermind, I found that in connecting I had connected to SQLEXPRESS (where filestream is not supported) - instead of SQLServer. All the above steps worked perfectly when I connected to SQLServer. Thanks.

[Tai Yee - MSFT] Thank you for following up with the resolution to your problem!
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement | Site Feedback
Page view tracker