SQL Server - Enabling FileStream after a DB has been created

前端 未结 2 1553
自闭症患者
自闭症患者 2021-02-01 15:35

We have a database and have decided to enable it for FileStream use. I think I\'ve done everything I\'m supposed to except creating a FileStream Data Container. I can\'t seem to

2条回答
  •  一整个雨季
    2021-02-01 16:01

    From http://brianseekford.com/wordpress/?p=509


    If you still get FILESTREAM feature is disabled. check the 'running values' of your server and you'll probably still see it is disabled even if you enabled it.

    enter image description here

    You can fix it by enabling filestream here too (under Sql configuration manager).

    enter image description here

    Then you need to run

    EXEC sp_configure filestream_access_level, 2

    RECONFIGURE

提交回复
热议问题