EnvironmentUcommerce 9.0.0 - 9.6.0
Question/Problem descriptionAfter upgrading to 9.6.0 the scratch indexer won't run with the error "Cannot resolve collation conflict between Latin1_General_CI_AS and another langauge".
Steps to reproduceInstall or upgrade to 9.6.0 and have your SQL server set in another collation than Latin1_General_CI_AS
Error message"Cannot resolve collation conflict between Latin1_General_CI_AS and another langauge".
ResolutionThe problem has really existed since the first Ucommerce version was released, but now is the first time the issue appear. The reason is a hardcoded collation on the table uCommerce_DataTypeEnum. To fix the issue run the sql script below against your Ucommerce database. 

ALTER TABLE uCommerce_DataTypeEnum 
ALTER COLUMN [Value] NVARCHAR(1024) COLLATE DATABASE_DEFAULT



Workaround

There's no workaround at this point. You need to apply the steps outlined in the resolution section of this article