Created
November 21, 2017 02:01
-
-
Save blacktambourine/9a8cf988f8ae00487b2a98e6c3285fde to your computer and use it in GitHub Desktop.
Get the largest files in your Sitecore database
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 ID, [Name], cast([dbo].[SC_GetSharedFieldValue] (ID, '{6954B7C7-2487-423F-8600-436CB3B6DC0E}') as int) AS FileSize | |
FROM [dbo].[Items] | |
ORDER BY FileSize DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment