Created
January 21, 2018 11:33
-
-
Save hermanussen/7d78d0817f8efda12f18d424ce89271f to your computer and use it in GitHub Desktop.
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 [SitecoreWebsiteSitecore_Master] | |
-- Search for all items named 'Sample' and output their paths and template names | |
SELECT [ID] | |
, [dbo].SC_GetPath([ID]) as [Path] | |
, [dbo].SC_GetName([TemplateID]) as [Template Name] | |
FROM [Items] a | |
where Name = 'Sample' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment