문제

One of the Site collection Administrators has deleted the Site Collection mistakenly, so we want to restore it back. What would the best approach ?

Some of the SQL stuff:

  • SQL Full backup -> Every day SQL
  • Incremental backup -> Every hour

We have not implemented any SharePoint disaster recovery methods.

도움이 되었습니까?

해결책

  1. Restore the SQL DB containing the site collection
  2. Create new web application (any host name or port will do)
  3. Attach Content Database using

    stsadm -o addcontentdb -url http://URLofWindowsSharePointServicesSite -databasename DatabaseName -databaseserver DatabaseServer

  4. You should be able to find your site collection in the web application

  5. Using stsadm -o export -url [site-coll-new-url] -includeusersecurity -versions 4 export the full web application
  6. Using stsadm -o import -url [site-coll-dest-url] -versions 2 import the site collection to your old web app.

Please verify the stsadm -o export and stsadm -o import syntax exactly. I am writing this off the top of my head.

OR you can try using Appasure DocRetriever

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top