Created
March 18, 2014 09:55
-
-
Save amusarra/9616956 to your computer and use it in GitHub Desktop.
Size of the Liferay Document Library
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
SELECT DLFILEENTRY.REPOSITORYID, | |
(SUM(DLFILEENTRY.SIZE_) / 1048576) SIZE_MBYTE | |
FROM DLFILEENTRY | |
GROUP BY DLFILEENTRY.REPOSITORYID | |
ORDER BY SIZE_MBYTE; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment