ConfigMgr 2012 – Wsyncmgr.log - Sync failed: ImportUpdateError
Wsyncmgr.log
Microsoft.SystemsManagementServer.SoftwareUpdatesManagement.WsusSyncAction.WSyncAction.SyncWSUS
C:\Program Files\Update Services\LogFiles\SoftwareDistribution.log
SQL Server detected a logical consistency-based I/O error: incorrect pageid (expected 1:12345; actual 0:12345678). It occurred during a read of page (1:123456) in database ID 5 at offset 0x000000123456789 in file 'X:\WSUS\\UpdateServicesDbFiles\SUSDB.mdf'. Additional messages in the SQL Server error log or system event log may provide more detail. This is a severe error condition that threatens database integrity and must be corrected immediately. Complete a full database consistency check (DBCC CHECKDB). This error can be caused by many factors; for more information, see SQL Server Books Online"
Software Update Point Synchronization probleminde yukarıdaki hataları ilgili loglarlar da alıyorsanız aşağıdaki adımlar ile WSUS SUSDB database’ini recover etme şansınız var.
İşlemlere başlamadan once mutlaka full database backup alın.
SQL Server Management Studio ile SUSDB üzerinde aşağıdaki komutları çalıştırın.
dbcc checkdb –> komutu ile database üzerinde hata varmı kontrol edin hata var ise aşağıdaki komutları çalıştırın.
alter database susdb set single_user
alter database susdb set offline with rollback immediate
alter database susdb set online,single_user
dbcc checkdb ('susdb', repair_allow_data_loss) –> Hatalar temizlenene kadar komutu birden fazla çalıştırmanız gerekebilir.
alter database susdb set multi_user
WSUS Servisini restart edin.
Burak Filiz