Use this SQL script below. In SSMS, right-click on the database name the site collection resides in, choose New Query, and then just paste and execute the script.
Notes
ReferencesSELECT CONCAT([DirName], N'/', [LeafName]) AS [FullRelativePath], LEN(CONCAT([DirName], N'/', [LeafName])) AS [Length] FROM [dbo].[AllDocs] ORDER BY [Length] DESC
Notes
- Thanks to Marian Kostal for this handy little script.
No comments:
Post a Comment