When i try to open SharePoint designer (2010) the list and library are not shown, Its throws error like ‘testSplist’ is Broken.
How to resolve this error.
Follow the below steps to resolve this issue.
Write the following code on SharePoint powershell.
$web = Get-SPWeb http://[yoursite]
$list = $web.Lists["Your Broken List"]
$list.Delete()
Once you done restart the SharePoint designer.
Now open the SharePoint designer it will show the all list and library.