views:

252

answers:

2

Real quick question - I must be blind or something.

In SQL Server Mgmt Studio, I can check for the level of filestream support currently enabled by

EXEC sp_configure filestream_access_level

Great, works. But how can I find the Windows share name specified during installation where the filestream data will actually be stored? I can't seem to find any settings, configuration option or anything to do that. Can this be?? I can't find this out??

Marc

+1  A: 

Run the following query: SELECT SERVERPROPERTY ('FILESTREAMShareName')

That's it - thanks very much!
marc_s
+1  A: 

Also, you can retrieve the Filestream support level without using sp_configure with the below option.

select SERVERPROPERTY(N'FilestreamConfiguredLevel')
MikeW