Skip to content

Instantly share code, notes, and snippets.

@hermanussen
Created January 21, 2018 11:33
Show Gist options
  • Save hermanussen/7d78d0817f8efda12f18d424ce89271f to your computer and use it in GitHub Desktop.
Save hermanussen/7d78d0817f8efda12f18d424ce89271f to your computer and use it in GitHub Desktop.
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