0

I have a single server in my SharePoint 2010 server farm. Today some of users complained about that some of Infopath forms can not be opened. When I checked the SOL Server Management Studio I saw that some of my databases are in Restoring state as you see in the image below!!! enter image description here

Do you know any reason why this has happened and how can I resolve this issue?

Pooya Yazdani
  • 267
  • 5
  • 11

2 Answers2

1

Did you run a restore database ? I think you did because it cannot happen on its own. Or maybe there is a scheduled task somewhere ?

But nevermind, it seems that your databases have not been brought up online after the restore process.

You can bring them online manually using ALTER DATABASE mydatabase SET ONLINE;

To bring them up online automatically as part of the restore process, just use WITH RECOVERY option within your database RESTORE command.

krisFR
  • 12,830
  • 3
  • 31
  • 40
0
  1. Check the option in Backup job under maintenance plan
  2. Take the tail log backup and keep the database in Restoring state.
  3. To Over Come,disable the above said option and run the following query for each affected Database
  4. Restore database DB_NAME with recovery;
bgtvfr
  • 1,224
  • 10
  • 19