When generating the output script for a schema compare, the drop for statistics is not being wrapped in a check to make sure the statistic exists.
For example:
USE AdventureWorks2008R2;
GO
IF EXISTS (SELECT name FROM sys.stats
WHERE name = N'ContactPromotion1'
AND object_id = OBJECT_ID(N'Person.Person'))
DROP STATISTICS Person.Person.ContactPromotion1
GO
To Toad for SQL Server community

Social Web