Reputation: 39
I am trying to enable Filestream in my database (i am working on (localdb)\v11.0).
I went to the SQL server configuration manager and enabled the filestream, so far so good then i went to my object explorer and opened the properties of my server and in the Advanced Tab i changed FileStream Access level to full access enabled.
I made a query to add a filegroup for my filestream but i always got the following error : Msg 5598, Level 16, State 3, Line 1 FILESTREAM feature is not supported on user instances.
this is the query i tried to execute:
ALTER DATABASE QuizDatabase ADD
FILEGROUP FileStreamQuizDatabase CONTAINS FILESTREAM;
GO
I've no idea what am i doing wrong or if i should enable something else.
thanks in advance
Upvotes: 3
Views: 4415
Reputation: 4729
LocalDB doesn't support filestream, use SQL Express or full edition.
Here's a feature matrix:
Upvotes: 2
Reputation: 21
Filestreams seem not to be supported in the (VS integrated) Microsoft SQL Server Data Tools (which you appear to be using)
according to this (same issue) you have to use an ordinary sql server
Upvotes: 2
Reputation: 11
You have to enable the File stream at the service level.
Upvotes: 0