Created
February 20, 2014 16:10
-
-
Save JamesSkemp/9117228 to your computer and use it in GitHub Desktop.
Searches the Sitecore database for locked items.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use XXX_Sitecore_Master | |
select f.ItemId, f.Value, f.Created, f.Updated, i.Name | |
from VersionedFields f | |
left join Items i on f.ItemId = i.ID | |
where f.Value like '<r owner%' | |
order by f.Value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment