0
votes
0answers
9 views

SQL Server 2012 FileTable Missing sometimes [migrated]

I have created 3 folders by using file table. One of the folder have ~392 GB data (with heavy data read/write) and it is not showing up sometimes and I need to restart to SQL Server 2012 to make it ...
0
votes
1answer
34 views

Find a whole sentence by SQL Contains command

Search for a whole sentence in a file stored in file table using CONTAINScommand ? For example if user enter "SQL Server" sentence I want to search for files that just contain exactly "SQL Server" ...
0
votes
2answers
20 views

create a file system group pointing at a SAN

I am working with creating a FileTable in sql server 2012. I want to store the files on a SAN (Storage Area Network). I have mapped it to a drive on sql server. To use the FileTable, I need to set up ...
0
votes
0answers
24 views

Configuring Filetable to only watch for certain files

I have SQL server 2012 set up with a Filetable. The table looks into a directory that may have many 1000's of files. But I am only interested in very specific files- for example those that have ...
2
votes
1answer
125 views

SQL Server 2012 FileTable- is a file stored IN the database?

If I create a FileTable in SQL server 2012, and then was to drop a 4G file onto the NT filesystem (that was in the filestream), would that entire 4G file be read into the table's filestream column? ...
1
vote
0answers
47 views

How to use SqlFileStream for transactional access to SQL Server 2012 FileTable?

I'm trying to use the SqlFileStream object in a WCF service to get a handle to a specific file that is in a SQL Server 2012 FileTable. I'm able to get the path and transaction context like you would ...
1
vote
0answers
81 views

Serve static content with iis 7.5 from SQL Server 2012 FileTable

I'm fighting this problem all day with no success. I have the following configuration: Windows Server 2008 R2 Standard SQL Server 2012 Enterprise I configured the FILESTREAM feature and created a ...
1
vote
0answers
60 views

Custom ifilter for sqlserver works only for first file

I created a custom ifilter for a new extension (.abc). When I installed it in operative system, the search works well. When I tried to use it in sqlserver 2012 on a full text index on a filetable ...
1
vote
1answer
36 views

Scripting FileTables

Scenario: I have 3 environments that I am using, Dev, UAT and Live. Each of which having it's own database, MyDb_Dev, MyDb_UAT, MyDb_Live. Then I have a VS2012 Database project in my solution that ...
1
vote
1answer
226 views

SQL Server 2012 FileTables to store images for hosting in IIS8 virtual directory

I'm having a pretty specific problem regarding hosting images (for display on a web page) in an IIS8 virtual directory mapped to a SQL Server 2012 FileStream share. When I attempt to browse to the URL ...
0
votes
0answers
140 views

Insert an .sdf file into SQL Server column

I tried using blob: INSERT INTO [dbo].[ProbaImage](Id, Podatak) SELECT 1,* FROM OPENROWSET(BULK N'C:\Users\Desktop\AUTOTROLEJ.sdf', SINGLE_BLOB) AS Podatak GO But it ...
2
votes
1answer
396 views

Opening FileTable Files in c# / .net 4

I have a Filetable containing many different document types (.doc;.pdf;.xls etc). I am writing a small web (C# / .net 4) search app. Search works great using fulltext index with filetable to find ...
1
vote
1answer
114 views

Force indexing of a filestream in SQL Server 2012

Is it possible to force somehow the indexing service of MS SQL Server 2012 to index a particular filestream/record of a filetable? If not, is there any way to know if a filestream/record has been ...
1
vote
1answer
618 views

Entity Framework 5.0 and FileTable

So say I have the following tables in my SQL Server 2012 DB: Person PersonId FirstName LastName Photo PhotoId PersonId (fk) DateTaken PhotoFileTable (all the FileTable columns) And ...
1
vote
2answers
507 views

SQL Server 2012 - File table permissions for network access

I have a sql server 2012 instance set up as a filestore on a networked server. I need all users on computers on the same network to be able to browse the file system representing the file table. ...
2
votes
1answer
346 views

Explorer not updating after creating directories with SQL Server 2012 FileTable

I am trying to create directories in a SQL Server FileTable via a stored procedure where I call the following code: INSERT INTO tblMyFiles (name, is_directory, is_archive) VALUES ('foldername', 1, ...
2
votes
1answer
285 views

SQL Server 2012 FileTable not able to open Outlook 2010 email message

I have created a SQL FileTable in a SQL Server 2012 database. I am trying to drag and drop an Outlook 2010 .msg file to the SQL FileTable. I have tried doing this to a Network Drive mapped to the ...
3
votes
0answers
432 views

What's wrong with my Update Trigger for an Sql Server 2012 FileTable

I have a table, 'game.FileAttachments' which has a stream_id column that links to the stream_id column of a File table, 'game.Attachments'. I created an Update trigger on the File table, to update the ...
2
votes
3answers
546 views

150MB csv file stored in SQL 2012 FileTable - how can I query the data to insert into a table

I have a simple database with a Persons table UserId, Name,DOB The table contains 750,000 rows (People). I receive a CSV file that may contain 10 million rows UserId, Address1, Address2, ...
4
votes
1answer
853 views

Creating Sub Directory via SQL INSERT using FileTable

Previously, I requested how to create a directory within a FileTable without using File I/O APIs. I now want to create a subdirectory to the parent directory I just created. How do assign my parent ...
2
votes
1answer
519 views

Use SQL INSERT to Create Directories with FileTable

Is there a way to create directories in a FileTable without using File I/O APIs? Is it just as simple as creating a SQL INSERT statement? This is my first experience with SQL Server 2012 and I'm not ...