A few weeks ago I posted an article on how to import and export unstructured data in SQL Server by using the “image” data type.
In this article I will show how you can manipulate unstructured data in SQL Server 2008 or later by using the FILESTREAM feature. FILESTREAM allows storing unstructured data (i.e. music, video, documents, etc.) onto the NTFS file system and manipulating it via the Database Engine.
Step 1: Enabling FILESTREAM in SQL Server
Before using the FILESTREAM feature you have to enable it. To this end you need to navigate to SQL Server Configuration Manager and under SQL Server Services right click on the SQL Server instance, select properties and in the “FileStream” tab check “Enable FILESTREAM for Transact-SQL access” and “Enable FILESTREAM for file I/O access”:
The last step for enabling FILESTREAM is from within SSMS, to open a new query window and execute the following T-SQL statement and then restart the SQL Server instance:
EXEC sp_configure filestream_access_level, 2; GO RECONFIGURE GO
Note: the available filestream access levels are:
-
- 0: Disables FILESTREAM support for this instance.
- 1: Enables FILESTREAM for Transact-SQL access.
- 2: Enables FILESTREAM for Transact-SQL and Win32 streaming access.
Step 2: Creating a FILESTREAM-Enabled Database
For creating a FILESTREAM-enabled database you just need to include a FILESTREAM filegroup. For example:
CREATE DATABASE FileStreamDB ON PRIMARY ( NAME = FileStreamDBData, FILENAME = 'C:\BlogSQLDatafilestreamDB_data.mdf'), FILEGROUP FileStreamGroup_1 CONTAINS FILESTREAM( NAME = FileStreamDBFS, FILENAME = 'C:\BlogSQLDatafilestream1') LOG ON ( NAME = FileStreamDBLogs, FILENAME = 'C:\BlogSQLDatafilestreamDB_log.ldf'); GO
Step 3: Creating a Table for Storing FileStream Data
USE [FileStreamDB]; GO CREATE TABLE dbo.Files ( [Id] [uniqueidentifier] ROWGUIDCOL NOT NULL UNIQUE, [FileName] VARCHAR(100), [ActualFile] VARBINARY(MAX) FILESTREAM NULL ); GO
Strengthen you SQL Server Development Skills – Enroll to our Online Course!
Check our online course titled “Essential SQL Server Development Tips for SQL Developers”
(special limited-time discount included in link).Sharpen your SQL Server database programming skills via a large set of tips on T-SQL and database development techniques. The course, among other, features over than 30 live demonstrations!
Step 4: Storing FileStream Data
Now, let’s store the file in our FILESTREAM-enabled database and table that was created earlier:
USE [FileStreamDB]; GO INSERT INTO dbo.Files VALUES (newid (), 'SampleImage.png', (SELECT * FROM OPENROWSET(BULK 'C:\Testing2SampleImage.png',SINGLE_BLOB) AS x) ) GO
What we just did with the above example, shows a small glimpse of the real power of FILESTREAM, that is leveraging the performance and rich APIs of the Windows file system and at the same time maintaining consistency between structured and unstructured data in SQL Server.
FILESTREAM actually works like a bridge between structured and unstructured data via a combination of transactional data and file system access and can be extremely useful in cases where you have many binary objects like images and videos and you want to store it in SQL Server and being able to access it with the speed of the file system.
Watch a Live Demonstration of the FILESTREAM Feature!
Learn More
Featured Online Courses:
- Introduction to Azure SQL Database for Beginners
- SQL Server 2019: What’s New – New and Enhanced Features
- SQL Server Fundamentals – SQL Database for Beginners
- Essential SQL Server Administration Tips
- Boost SQL Server Database Performance with In-Memory OLTP
- Essential SQL Server Development Tips for SQL Developers
- Working with Python on Windows and SQL Server Databases
- Introduction to Computer Programming for Beginners
- .NET Programming for Beginners – Windows Forms with C#
- Introduction to SQL Server Machine Learning Services
- Entity Framework: Getting Started – Complete Beginners Guide
- How to Import and Export Data in SQL Server Databases
- Learn How to Install and Start Using SQL Server in 30 Mins
- A Guide on How to Start and Monetize a Successful Blog
Check our Related SQL Server Development Articles:
- The set identity_insert Command in SQL Server
- The Import Flat File Wizard in SSMS v17.3
- Listing all Tables of a Linked Server’s Database
- Executing Heavy Set-Based Operations Against VLDBs in SQL Server
- How to Import and Export Unstructured Data in SQL Server – FileTables
- How to Import and Export Unstructured Data in SQL Server – FILESTREAM
- How to Import and Export Unstructured Data in SQL Server – The IMAGE Datatype
- Manipulating EXCEL 97-2003 Worksheets with the OPENROWSET Command
- …more
Subscribe to our newsletter and stay up to date!
Check out our latest software releases!
Check our eBooks!
Rate this article:
Reference: SQLNetHub (https://www.sqlnethub.com)
© SQLNetHub
Artemakis Artemiou, a distinguished Senior Database and Software Architect, brings over 20 years of expertise to the IT industry. A Certified Database, Cloud, and AI professional, he earned the Microsoft Data Platform MVP title for nine consecutive years (2009-2018). As the founder of SQLNetHub and GnoelixiAI Hub, Artemakis is dedicated to sharing his knowledge and democratizing education on various fields such as: Databases, Cloud, AI, and Software Development. His commitment to simplicity and knowledge sharing defines his impactful presence in the tech community.
OK, I saw an import filestream data, but I didn't see an export filestream data at your post. Title is missing or you forgot add example how to export data from existing table, that used FILESTREAM.
Hi Nikodem,
Thank you for your comment.
When you use FileStream for storing binary files in SQL Server, you can access these files directly from the File System (see Figure 4) as well because they are actually stored in the File System. The files can be managed from SQL Server or directly from the File System. That's the main benefit of using FileStream.