Kayıtlar

Ocak 11, 2012 tarihine ait yayınlar gösteriliyor

The backup set holds a backup of a database other than the existing ' ' database. hatası

SQL SERVER – FIX : Error 3154: The backup set holds a backup of a database other than the existing database Our Jr. DBA ran to me with this error just a few days ago while restoring the database. Error 3154: The backup set holds a backup of a database other than the existing database. Solution is very simple and not as difficult as he was thinking. He was trying to restore the database on another existing active database. Fix/WorkAround/Solution: 1) Use WITH REPLACE while using the RESTORE command. 2) Delete the older database which is conflicting and restore again using RESTORE command. I understand my solution is little different than BOL but I use it to fix my database issue successfully. 3) Sample Example : RESTORE DATABASE AdventureWorks FROM DISK = 'C:\BackupAdventureworks.bak' WITH REPLACE

Lokalde ms-sqlserver service start failed hatası

Bu sabah localde yüklü olan ms-sql 2008 serverımı çalıştıramadım. Sql server configuration manager consolunu açtım. Orada da servis açılmayınca olay günlüğünde oluşan hataya baktım " SQL Server (MSSQLSERVER) hizmeti, hizmete özgü Belirtilen modül bulunamadı. hatası ile sona erdi ." Şu şekilde bir mesaj döndürüyordu. İnternette bir kaç yerde arama yaptım. En sonunda birisi şöyle bir çözüm önermiş Start->All Programs -> Microsoft Sql server 2005 -> Configuration Tools -> SQL Server Configuration Manager. In the SQL SERVER configuration Manager Window, click the plus (+) sign against SQL SERVER 2005 Network Configuration.  Highlight 'Protocols for MS SQL SERVER' In the right pane you'd find VIA in protocol name column , you can right click it san select 'Disable' Bunun üzerine configuration managerde VIA sekmesini disable yapınca sorun çözüldü. Servis tekrar çalışmaya başladı.