This file contains 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
-- Large blob data in test/uat environments is just wastefull use of disk space | |
SP_SPACEUSED [Blobs] | |
-- FINDING ItemIds FOR RELEVANT FIELDS | |
-- File > Information > Extension Field | |
select * from Items where ID like 'C06867FE-9A43-4C7D-B739-48780492D06F' | |
-- File > Media > Blob Field | |
select * from Items where ID like '40E50ED9-BA07-4702-992E-A912738D32DC' | |
-- Examining the data location of the fields |
This file contains 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
using System.Net.Mail; | |
using Sitecore.Data.Items; | |
using Sitecore.Diagnostics; | |
using Sitecore.Workflows.Simple; | |
using Sitecore.Links; | |
namespace YOURPROJECTNAMESPACE | |
{ | |
public class EmailAdmin | |
{ |