我正在使用SharePoint 2013.我想知道如何摆脱孤儿数据库。我尝试了以下stsadm -o deletesite -force -SiteID ********************* -DatebaseName ContentDB_Matt -DatabaseServer SQL_Instance http://sharepoint-mattharmon.blogspot.com/2015/09/deleting-orphaned-sites-from-sharepoint.html然而它没有用。
答案 0 :(得分:0)
我最后一次处理孤儿网站是在恢复期间。我不得不卸载并重新安装内容数据库。此过程似乎解决了导致网站被错误地标记为孤立网站的问题。
$site = Get-SPSite http://<your sp site>/<orphaned site collection>
$contentDB = $site.ContentDatabase
Dismount-SPContentDatabase -Identity $contentDB.Id
Mount-SPContentDatabase “<your content database name>” -DatabaseServer <your sql alias> -WebApplication http://<your sp site>