前幾天發現事件檢視器裡面每時每刻都有這個5553代號的錯誤,說什麼索引值衝突之類的.上網搜了一下,竟是backup和restore造成的.現在沒環境,回頭試一下,先貼上這位老兄的文章:
[原文地址]
當用stsadm.exe 工具 backup 一個網站集合然後 restore到其他Application 上,Event Log裡面經常出現下列錯誤:
Event Type: Error
Event Source: Office SharePoint Server
Event Category: User Profiles
Event ID: 5553
Date: 4/28/2008
Time: 4:00:03 PM
User: N/A
Computer: *****
Description:
failure trying to synch site 2a918abf-12ce-4819-811d-803f0f87d313 for ContentDB 1c85deaa-d2a2-4f01-90ec-fca3f691dab3 WebApp ada1f800-c105-4970-bca0-c43d699daadc. Exception message was Cannot insert duplicate key row in object 'dbo.UserMemberships' with unique index 'CX_UserMemberships_RecordId_MemberGroupId_SID'.
出現這種原因是:在一個form 場裡,Backup當前的網站級,讓後restore到另外一個Application下面.在兩個application地資料會產生相同的Guid,這樣當同步操作,會殘生衝突.
解決問題如下:
根據上面的ContentDB去SQLServer 找到那個網站級:
Database: Sharepoint_Config, Table dbo.Objects
SELECT Id, ClassId, ParentId, Name, Status, Version, Properties
FROM Objects WHERE (Id = '5bafe2af-48a7-4043-a36d-29160f3b88e2')
長到網站集合之後,繼續下列操作.
A.先分離資料庫:
Ststam -o preparetomove -contentdb {SQLServer:DatabaseName} -site {site collection's Url}
B.刪除 內容資料庫:
Stsadm -o deletecontentdb -url {Application's url.Ex:http://Moss:8080} -databasename {DatabaseName} -databaseserver {SQL Sever name}
C,重新附加資料庫:
stsadm -o addcontentdb -url {Application's url.Ex:http://Moss:8080} -databasename {DatabaseName} -databaseserver {SQL Sever name
Ok.重啟動一下IIS.