SQL Server Jobs MSCRM_CONFIG.HardDelete and MSCRM_CONFIG.SiteWideCleanup will never execute the stored procedure unless the database is being mirrored.
Current code in Job
if exists (select * from sys.database_mirroring where mirroring_role = 1 and database_id = DB_ID('MSCRM_CONFIG')) begin exec('use MSCRM_CONFIG; exec p_HardDelete') end
If the MSCRM_CONFIG is not mirrored the value in mirroring_role is null.
I am not sure these jobs really matter - but just an FYI.