‘Microsoft.ACE.OLEDB.12.0’ provider is not registered on the local machine error

If you are using a 64-bit OS, please follow the steps below: Install Microsoft Access Database Engine 2010 Redistributable from here. Restart (just in case) your machine and see if that works for you. If not, you also need to install 2007 Continue reading ‘Microsoft.ACE.OLEDB.12.0’ provider is not registered on the local machine error

SQL Server 2008 R2 (Suspect) mode – how to repair?

Run the following SQL statements to fix the issue: EXEC sp_resetstatus ‘yourDBname’; ALTER DATABASE yourDBname SET EMERGENCY DBCC checkdb(’yourDBname’) ALTER DATABASE yourDBname SET SINGLE_USER WITH ROLLBACK IMMEDIATE DBCC CheckDB (’yourDBname’, REPAIR_ALLOW_DATA_LOSS) ALTER DATABASE yourDBname SET MULTI_USER   Please see here Continue reading SQL Server 2008 R2 (Suspect) mode – how to repair?