Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Database & SysAdmin
  3. Database
  4. SQL 2012 Restore Problem

SQL 2012 Restore Problem

Scheduled Pinned Locked Moved Database
helpdatabasecomsysadminquestion
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    Kevin Marois
    wrote on last edited by
    #1

    I'm trying to restore a DB from backup. I get the following error "System.Data.SqlClient.SqlError: FILESTREAM feature is disabled." I have tried to enable FileStream by following This[^] When I get to the Config Manager and open the Properties and check the checkboxes I get "There was an unknown error applying the FILESTREAM settings. Check the parameters are valid." Of course this doesn't tell me anything useful. Anyone have any ideas? Thanks

    If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.

    Richard DeemingR 1 Reply Last reply
    0
    • K Kevin Marois

      I'm trying to restore a DB from backup. I get the following error "System.Data.SqlClient.SqlError: FILESTREAM feature is disabled." I have tried to enable FileStream by following This[^] When I get to the Config Manager and open the Properties and check the checkboxes I get "There was an unknown error applying the FILESTREAM settings. Check the parameters are valid." Of course this doesn't tell me anything useful. Anyone have any ideas? Thanks

      If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.

      Richard DeemingR Offline
      Richard DeemingR Offline
      Richard Deeming
      wrote on last edited by
      #2

      Try using option 2, to see if TSQL gives you a better error message:

      USE master
      GO
      EXEC sp_configure 'show advanced options'
      GO
      EXEC sp_configure filestream_access_level, 1
      GO
      RECONFIGURE WITH OVERRIDE
      GO

      If it doesn't, then check the SQL Server logs and the Windows event logs to see if there's any useful information there.


      "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

      "These people looked deep within my soul and assigned me a number based on the order in which I joined" - Homer

      K 1 Reply Last reply
      0
      • Richard DeemingR Richard Deeming

        Try using option 2, to see if TSQL gives you a better error message:

        USE master
        GO
        EXEC sp_configure 'show advanced options'
        GO
        EXEC sp_configure filestream_access_level, 1
        GO
        RECONFIGURE WITH OVERRIDE
        GO

        If it doesn't, then check the SQL Server logs and the Windows event logs to see if there's any useful information there.


        "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

        K Offline
        K Offline
        Kevin Marois
        wrote on last edited by
        #3

        Already tried that. It says it worked but it really didn't. I ended up installing another instance and setting FileStream enabled during the install.

        If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups