Hey Everybody,
I have run out of options supporting a customer that is having an error when creating a database with a file stream. The error displayed is unable to open physical file operating system error 259 (No more data is available). We're using a pretty
standard creation SQL script that we aren't having issues with other customers:
-----------------------------------------------------------------------------
-- We are going to create our data paths for the filestreams.
-----------------------------------------------------------------------------
DECLARE @data_path nvarchar(256);
SET @data_path = (SELECT SUBSTRING(physical_name, 1, CHARINDEX(N'master.mdf', LOWER(physical_name)) - 1)
FROM master.sys.master_files
&nb ...
Go to the complete details ...