magritton
8/2/2014 - 11:58 AM

This creates a file table type of sql server table utilizing the filestream functions

This creates a file table type of sql server table utilizing the filestream functions

USE FileSearch
go
CREATE TABLE CQ_Documents AS FileTable
WITH
(
    FileTable_Directory = 'CQ_Documents',
    FileTable_Collate_Filename = database_default
);
GO