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_%')
Tags:
Database75 SharePoint498 SharePoint 2007218 SQL Server100 T-SQL66
Potrebbe interessarti anche: