Good evening (or good morning) friends all around the globe! Wherever you are, whatever you do, wishing you a nice rest of the day (or night!) 🙂
This is the last of a series of posts that deal with the task of importing and exporting unstructured data in SQL Server.
The first article of this series, explained how you can store and export binary files in earlier versions of SQL Server such as SQL Server 2005 with the use of the image datatype.
The second article presented the FILESTREAM technology which was first introduced in SQL Server 2008.
This article discusses the FileTables feature which builds on top of SQL Server FILESTREAM technology. FileTables was first introduced in SQL Server 2012.
What is FileTables in SQL Server?
The FileTables feature allows the user to store unstructured data (i.e. files, documents, images, etc.) in special tables in SQL Server called FileTables, but being able to access them from the file system. To this end, if you have an application that needs to access unstructured data, you can directly access them from the File System even though the data is stored into FileTables in SQL Server.
Example of Using SQL Server FileTables
Enough with the talking, let’s see an example of using this great feature.
Enable FileStram
First, let’s enable FILESTREAM (this is a prerequisite – for more info, see the second article of this series):
Figure 1: Enable FILESTREAM.
Then, let’s create a FILESTREAM-enabled database (make sure to update the path “C:\BlogSQLData” if you are using a different one):
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
Then we need to enable non-transactional access at the database level as well as specify the directory for FileTables:
ALTER DATABASE FileStreamDB
  SET FILESTREAM ( NON_TRANSACTED_ACCESS = FULL, DIRECTORY_NAME = N'FileTablesDir')
GO
Now it’s time to create the FileTable:
USE FileStreamDB;
GO
CREATE TABLE DocumentStore AS FileTable
  WITH (Â
     FileTable_Directory = 'FileTablesDir',
     FileTable_Collate_Filename = database_default
     );
GO
Check out FileTables
OK, it’s time for the magic to take place. Let’s check the contents of the FileTable:
Figure 2: The FileTable in SSMS Object Explorer.
As you can see, the FileTable “DocumentStore” is currently empty:
Figure 3: Checking the contents of the FileTable.
Now, let’s open the FileTable directory in Explorer, and by accessing it directly from the Windows File System, copy some files:
Figure 4: Access the FileTable directory in Explorer.
Figure 5: Copy files in the FileTable directory.
Now, let’s check again the contents of the FileTable from SSMS:
Figure 6: Checking the FileTable contents after copying the files from Windows Explorer.
And that’s it! As you can see in the above screenshot, by copying the two files from Windows Explorer directly into the FileTable directory, the corresponding two records have been created in the FileTable in the SQL Server instance! Now you can access the files either from the SQL Server Database Engine via T-SQL or directly from the Windows File System!
FileTables along with the FILESTREAM technology, enables the user with more options when it comes to storing binary objects in SQL Server. The seamless integration of FileTables with the Windows File System (NTFS) allows the user to store large binary objects in fast speeds and at the same time to be able to use the powerful features of SQL Server’s Database Engine to traverse this data (i.e. full-text search, semantic search, etc.).
Strengthen you SQL Server Development Skills – Enroll to our Online Course!
Via the course, you will 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!
(Lifetime Access/ Live Demos / Downloadable Resources and more!)
Artemakis Artemiou is a Senior SQL Server Architect, Author, and a 9 Times Microsoft Data Platform MVP (2009-2018). He has over 15 years of experience in the IT industry in various roles. Artemakis is the founder of SQLNetHub and TechHowTos.com. Artemakis is the creator of the well-known software tools Snippets Generator and DBA Security Advisor. Also, he is the author of many eBooks on SQL Server. Artemakis currently serves as the President of the Cyprus .NET User Group (CDNUG) and the International .NET Association Country Leader for Cyprus (INETA).
Views: 2,530
Strengthen your SQL Server Database Administration Skills – Enroll to our 6-Hour Course!Â
“Essential SQL Server Administration Tips”
Learn essential tips and techniques for efficient SQL Server database administration (performance, security, integration and more)
This site uses cookies for personalized content and the best possible experience. By continuing to browse this site, you agree to this use. Find out more.