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?

Solr import URLs

Full-import http://<host>:<port>/solr/dataimport?command=full-import Delta-import http://<host>:<port>/solr/dataimport?command=delta-import status http://<host>:<port>/solr/dataimport reload-config http://<host>:<port>/solr/dataimport?command=reload-config abort http://<host>:<port>/solr/dataimport?command=abort