Ever need to find a SharePoint feature by its GUID?
Try this query via SQL Server Management Studio:
USE <InsertContentDBNameHere>How about just listing Features you have on the farm?
SELECT FeatureId,FeatureTitle
FROM FeatureTracking
WHERE FeatureId = '<insertGUID>'
Try this query via SQL Server Management Studio:
USE <InsertContentDBNameHere>SELECT Features.FeatureId, FeatureTracking.FeatureTitle
FROM Features, FeatureTracking
WHERE Features.FeatureId = FeatureTracking.FeatureID;
I liked it ..
ReplyDeleteThanks So much