Finds invalid characters in any Sitecore field
This file contains 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
SELECT * FROM ( | |
SELECT ItemId, FieldId, Value FROM [SharedFields] (nolock) | |
UNION | |
SELECT ItemId, FieldId, Value FROM [UnversionedFields] (nolock) | |
UNION | |
SELECT ItemId, FieldId, Value FROM [VersionedFields] (nolock) | |
) A | |
WHERE Value Like '%' + CHAR(0x01) + '%' | |
OR Value Like '%' + CHAR(0x08) + '%' | |
OR Value Like '%' + CHAR(0x10) + '%' | |
OR Value Like '%' + CHAR(0x12) + '%' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment