Sometimes when you try to edit any objects in 2012 Console, you probably get the below error,
his because the ConfigMgr console was crashing while editing the object.
We have to run the following query in SQL to free the objects again
select * from SEDO_LockState where LockStateID <> 0
(where SEDO stands for Serialized Editing of Data Objects)
Collect the Lock ID from the above query result and delete it with the below query,
DELETE from SEDO_LockState where LockID = ‘<LockID of the record identified in the previous query>’
Once the record is removed, We should be able to modify the object again. Hope it helps!
select * from SEDO_LockState where LockStateID <> 0
(where SEDO stands for Serialized Editing of Data Objects)
Collect the Lock ID from the above query result and delete it with the below query,
DELETE from SEDO_LockState where LockID = ‘<LockID of the record identified in the previous query>’
Once the record is removed, We should be able to modify the object again. Hope it helps!
No comments:
Post a Comment