Is this abug?

  • I have enabled filestream as shown in the attachment

    and then ran the below query.

    EXEC sp_configure filestream_access_level, 2;

    GO

    RECONFIGURE;

    GO

    But when query to verify the FilestreamEffectiveLevel , it showing as 3 instead of 2.

    But in BOL, nowhere mentiond about the FilestreamEffectiveLevel 3

    From BOL,

    FILESTREAM access is controlled within SQL Server using sp_configure to set the filestream_access_level configuration option to one of three settings. The possible settings are:

    0 – disable FILESTREAM support for this instance

    1 – enable FILESTREAM for Transact-SQL access only

    2 – enable FILESTREAM for Transact-SQL and Win32 streaming access

    SELECT SERVERPROPERTY ('FilestreamEffectiveLevel')

    Is this normal? or kind of known issue? Please advise.

    Thanks

  • don't you have to stop and start the service to change the config values into run values?

    i suspect the 3=changes pending as an undocumented status.

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • don't you have to stop and start the service to change the config values into run values?

    i suspect the 3=changes pending as an undocumented status.

    I did stop and start the service already.

    Does BOL mentioned any where about FilestreamEffectiveLevel as 3 (even as undocumented status)?

    Because, I'm implementing this in production and want to make sure some where it is documented and supported.

    Thanks

  • Yeah!! found it..

    From the below KB article, this behavior is normal

    http://support.microsoft.com/kb/955861

    Thanks

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

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