DB Config elenco delle solution caricate (SharePoint 2007)
Uno script T-SQL per elencare le solution (.wsp) di SharePoint 2007 e la loro dimensione:
SQL
/* lista web part e dimensione del file di solution *.wsp */
SELECT [Name], datalength(fileimage)-1 AS [size],
Id, ClassId, ParentId, Status, Version, Properties
FROM Objects
INNER JOIN binaries ON objects.id = binaries.objectid
--WHERE (Name LIKE '%wp_%')