Let's tech it
learn share innovate
Home
Enterprise software
Analytics
Ideas
Monday, November 5, 2012
SharePoint Configuration DB (Suspect) - How to recover
7:07 PM
SharePoint
1 comment
Run this Script
-- Use the Master database
Use Master
-- Verify that database has issues
EXEC sp_resetstatus 'SharePoint_Config'
-- Put the database in emergency mode
ALTER DATABASE SharePoint_Config SET EMERGENCY
DBCC checkdb('SharePoint_Config')
-- Set the database in single user mode
ALTER DATABASE SharePoint_Config SET SINGLE_USER WITH ROLLBACK IMMEDIATE
-- Repair the database with data loss
DBCC CheckDB ('SharePoint_Config', REPAIR_ALLOW_DATA_LOSS)
-- Set the database in multi-user mode
ALTER DATABASE SharePoint_Config SET MULTI_USER
-- Verify that database is reset
EXEC sp_resetstatus 'SharePoint_Config'
Read More
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)
Social Profiles
Popular
Tags
Blog Archives
About Me
Prasad Prabhu
IT consultant, sports data technologist, sports blogger, recreational footballer, keen observer and learner. I follow - sports, tech, innovation and people. In love with data analysis. Sport-trotter, my dream!
View my complete profile
Architecture : Logical vs Physical
If you are a developer or an aspiring architect you might have come across situations where your architects use technical jargons which ...
SharePoint User Adoption - Introduce value not change
Most employees in an organization are generally busy today. Most of them have a defined way of performing their day-to-day operations and ...
SharePoint : Connected Webparts
Creating connected webparts involves the below steps. Create an Interface public interface ITextBoxString Create a property ...
bLync and you know: Using data analysis to determine work pattern of an organization.
Does your organization use a communicator for internal communication? If yes and if the communicator is Microsoft Lync( formerly known as...
SharePoint : SPJOBLockType
Specifies the lock type for a given timer job definition. There are 3 Locks available.. SPJobLockType.None -- if you set it none...
SharePoint 2010 Workflow - Things to know
Workflows in SharePoint Server 2010 enable enterprises to reduce the amount of unnecessary interactions between people as they perform b...
Know SharePoint versions
Find out the SharePoint version(standard or enterprise) without the help central administration site. (This is generally useful when you ...
SharePoint Configuration DB (Suspect) - How to recover
Run this Script -- Use the Master database Use Master -- Verify that database has issues EXEC sp_resetstatus 'SharePoint_Config...
Content Management and Document Management
Consultants and developers working on SharePoint or on any other CMS system might hear words like content management and document manageme...
.Net Serializer - you dictate terms !
You may want to look at how you can use the built-in futures of .NET to serialize and deserilize an object into XML, rather than creating ...
Pages
Home
Home
Powered by
Blogger
.
Categories
SharePoint
(8)
SQL basics
(3)
Architecture
(2)
SQL
(2)
TipsNTricks
(2)
.Net
(1)
Analytics
(1)
CMS
(1)
Data analysis
(1)
Ideas
(1)
SQL Data types
(1)
Security basics
(1)
Technology adoption
(1)
Unified Communications
(1)
Web security
(1)
Workflow
(1)
XML Serialzation
(1)
Archives
►
2013
(5)
►
February
(1)
►
January
(4)
▼
2012
(2)
▼
November
(1)
SharePoint Configuration DB (Suspect) - How to rec...
►
May
(1)
►
2011
(9)
►
July
(2)
►
June
(6)
►
February
(1)
Labels
.Net
(1)
Analytics
(1)
Architecture
(2)
CMS
(1)
Data analysis
(1)
Ideas
(1)
Security basics
(1)
SharePoint
(8)
SQL
(2)
SQL basics
(3)
SQL Data types
(1)
Technology adoption
(1)
TipsNTricks
(2)
Unified Communications
(1)
Web security
(1)
Workflow
(1)
XML Serialzation
(1)
Blog Archive
►
2013
(5)
►
February
(1)
►
January
(4)
▼
2012
(2)
▼
November
(1)
SharePoint Configuration DB (Suspect) - How to rec...
►
May
(1)
►
2011
(9)
►
July
(2)
►
June
(6)
►
February
(1)
Blogroll
Blogger templates
-- Use the Master database
Use Master
-- Verify that database has issues
EXEC sp_resetstatus 'SharePoint_Config'
-- Put the database in emergency mode
ALTER DATABASE SharePoint_Config SET EMERGENCY
DBCC checkdb('SharePoint_Config')
-- Set the database in single user mode
ALTER DATABASE SharePoint_Config SET SINGLE_USER WITH ROLLBACK IMMEDIATE
-- Repair the database with data loss
DBCC CheckDB ('SharePoint_Config', REPAIR_ALLOW_DATA_LOSS)
-- Set the database in multi-user mode
ALTER DATABASE SharePoint_Config SET MULTI_USER
-- Verify that database is reset
EXEC sp_resetstatus 'SharePoint_Config'