Troubleshooting installations
In this section, you will see some common problems when installing Umbraco Engage and how to solve them.
Boot failure after initial installation
Description
After installing Umbraco Engage and booting for the first time, an SQL exception might be thrown. This happens when Umbraco Engage fails to run the necessary migrations on startup, and the Umbraco Engage tables are not created.
The most common reasons for this are:
Database connectivity issues.
Incompatible SQL Server version.
No COLUMNS STORE index support on Azure SQL lower than S3.
Exception
Steps to resolve
When having database connectivity issues
Remove the row with the
Umbraco.Core.Upgrader.State+Umbraco.Engage
key from theumbracoKeyValue
table in the database if it exists.Remove all existing umbracoEngage* tables from the database if they exist.
Restart the site.
When running on Azure SQL tier lower than S3
Azure SQL lower than S3 doesn't support creating COLUMN STORE indexes. To work around this follow these steps:
Scale your Azure SQL environment to S3.
Restart the site.
Scale back to your initial Azure SQL tier.
The COLUMN STORE indexes are created and can be used in a lower tier.
Last updated