FILESTREAM Feature In SQL Server

Today I am explaining what FILESTREAM is and how to use FILESTREAM in SQL server.

FILESTREAM is used for storing documents, images and any other binary objects in SQL database. Before FILESTREAM feature was released in SQL, for storing images in the database we had two options.  The first was to store image bytes in varbinary data type and the second was to  store image to any location in Windows file system and then store its path in in database table.

Both option have some disadvantages. The first option slows down the system performance and the second option has security issues, because in the second option anyone can see and access your images which are stored in you computer.

From SQL server 2008 FILESTREAM option is available. FILESTREAM is not a data type, it's an attribute of varbinary data type. FILESTREAM allows you to store the large size object in windows file system. Using FILESTREAM you can store any size of object; there is no size limit and you can store files as large as your hard drive size.

FILESTEAM feature is not available in default of SQL server installation. If you want to use FILESTREAM then you have to enable it in SQL server instance.

For enabling the FILESTREAM feature you have 2 options.

  1. At the time of installation of SQL server you have to select the option for enabling this FILESTREAM feature
  2. You can enable it after installation using SQL server configuration manager as shown in the below image.

For enabling FILESTREAM feature after installation in SQL server follow the below steps.

  1. Open the SQL Server Configuration Manager from start menu.

    SQL server

  1. Select SQL services on left panel and then select your SQL server from right panel and right click on it and go to properties menu.

    SQL server

  1. In property window Go to “FILESTREAM” tab.

    SQL server

  1. Enable “FILESTREAM for Transact-SQL access” option and other two options given below and give proper windows share name. Click on Apply and OK button.

    SQL server

  1. Restart the SQL Server service. You feature is now enabled on your SQL server instance and now you have to give access level to them so open SQL server management Studio and execute below command.
  1. EXEC sp_configure filestream_access_level, 2  
  2. GO  
  3. RECONFIGURE  
  4. GO  

Here “filestream_access_level” has following vvalue.

    1. 0 - FILESTREAM feature disable
    2. 1 - FILESTREAM feature enable for T-SQL
    3. 2 - FILESTREAM feature enable for both

  1. Now our SQL server is enabled with file stream feature.

  2. For using FILESTREAM feature you have to create FILESTREAM enabled database. Follow below process for creating database

  1. Right click on “DATABASES” and select new database.

    SQL server

  1. Go to “FIlegroups” option and click on “Add” button and enter name “FileStreamGP”(you can give any name here) and enable default option as shown in below image.

    SQL server

  1. Now GOTO “General” tab. Click on Add button and this will add new row to upper grid.

  2. Now give any Logical Name: FSTestDB_FilStream and File Type: FileStream Data and Path : give any valid path on your windows file system.

    Click on Ok button. This will create new database with FILESTREAM feature.

    SQL server

  1. Now your database is complete with FILESTREAM feature.

For storing blob or binary data in table you have to create table with FILESTREAM attribute. For FIELSTREAM attribute has some limitations.

    • FIELSTREAM enabled table has one unique row number compalsory.
    • FIELSTREAM column has “VARBINARY(MAX)” data type.
    • FILESTREAM enabled database cannot be used for mirroring
    • FILESTREAM data is not available in database snapshots

  1. Below is a script to create the FILESTREAM enabled data table.
  1. CREATE TABLE TblPhotos(  
  2.    ID UNIQUEIDENTIFIER ROWGUIDCOL NOT NULL UNIQUE,  
  3.    Name VARCHAR(20),  
  4.    Images VARBINARY(MAX) FILESTREAM NULL  
  5. )  

Script for inserting the records in table is given below.

  1.         -- Declare a variable to store the image data  
  2. DECLARE @tImage AS VARBINARY(MAX)  
  3.    
  4. -- Load the image data  
  5. SELECT @tImage = CAST(bulkcolumn AS VARBINARY(MAX)) FROM OPENROWSET( BULK  
  6.             'C:\Photos\MyPhoto.jpg',  
  7.             SINGLE_BLOB ) AS x  
  8.               
  9. -- Insert data in table             
  10. INSERT INTO TblPhotos (ID, Name, Images)  
  11. SELECT NEWID(), 'Image-1',@tImage  

In @tImage variable you have to pass valid path of the file (image, video, PDF etc…) please keep in mind that if your image has been stored on another network computer then you have to give network path. Only when image file is stored on computer where SQL server is installed should you give a  local drive path otherwise you have to give network path.

After inserting record you can check this record as shown in below image.

SQL server

This image has been stored at below location on windows file system. This is the path which you have given at the time of database creation.

SQL server

For checking if your SQL server instance is enabled with FILESTREAM feature or not you can use below queries.

  1. select * from sys.data_spaces where type='FD';  
  2. select * from sys.database_files where type = 2;  
  3. SELECT * FROM sys.configurations WHERE name = 'filestream access level'  

If you have any questions regarding use of FILESTREAM in SQL server please ask me in comment box.

In the next session I will show you storing and retrieving images, and videos and documents in database using FILESTREAM in WPF C#


Similar Articles