FileTable Explore FileTable Directory Throws Error

  • Hi

    I have a file table , when i clikc "ExploreTable DIrectory i am getting the below error

    "FileTable Cannot be opened.Either Access is not enabled or you do not have permission for the same."

    I have setup everything similar as my local 2012 DB in which FileTable is working correctly.Wereas in the server it is not allowing me to explore through MSBI option or access the SQL Server shared folder as

    \\servername\MSSQLSERVER FILESTREAMName\FileTable Path

    Please help asap!!!!

  • niveditha.raman - Tuesday, February 19, 2013 2:31 AM

    Hi I have a file table , when i clikc "ExploreTable DIrectory i am getting the below error"FileTable Cannot be opened.Either Access is not enabled or you do not have permission for the same."I have setup everything similar as my local 2012 DB in which FileTable is working correctly.Wereas in the server it is not allowing me to explore through MSBI option or access the SQL Server shared folder as\\servername\MSSQLSERVER FILESTREAMName\FileTable PathPlease help asap!!!!

    Hi Niveditha,

    Your SQL server is clustered?

  • This was removed by the editor as SPAM

  • shelly000Blooming - Thursday, June 29, 2017 5:37 AM

    My basic idea for trying out this is, to locate the path of the file table. If there is any other way to find the path of the file table let me know.

    🙂

    Thanks,

    In terms of the error in your first post, check the settings you have for filestream for that instance using SQL Server Configuration Manager. You can get that error if Enable Filestream for file i/o access is not selected.

    In terms of the path for the file table, you can get the virtual path that is used with the share using:
    SELECT FileTableRootPath ('Schema.FileTableName') 

    If you are looking for the physical path of the file table and not the path you get from above (which is more like a virtual share and path), the closest thing is the file for the filestream filegroup. A folder gets created using the file name you specified when creating the file for the filestream filegroup. So if you wanted to find that folder, you would just query sys.database_files:
    SELECT *
    FROM sys.database_files
    WHERE TYPE_DESC like 'Filestream'

    It's just not really a table in the same way as the normal tables in SQL Server. It uses NTFS data containers so it works totally different than the typical files mapped to folders type of thing.

    Sue

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply