An Azure service that provides an enterprise-grade analytics engine.
Hi DNR,
The error you’re seeing:
“The operation cannot be performed because it references an object or property that is unavailable in the current edition of the server or the compatibility level of the database.”
is caused by a compatibility level mismatch between your tabular model and the Analysis Services engine being used to host the workspace database.
When you open a Tabular project in Visual Studio, the model is deployed to a local workspace instance of the Analysis Services engine. If the model was created in Tabular Editor using a newer compatibility level (for example 1600, which targets SQL Server 2022 / Power BI engine), and the workspace engine or Azure Analysis Services supports only up to compatibility level 1500, the deployment fails with exactly this error.
Azure Analysis Services supports compatibility level 1500. Compatibility level 1600 and higher are supported in SQL Server 2022 Analysis Services and Power BI / Fabric semantic models, but not in Azure Analysis Services. If your model was created using Power BI defaults or SQL 2022 settings, that is likely the cause.
To resolve this, open the model in Tabular Editor and check the CompatibilityLevel property. If it is set to 1600 (or higher), change it to 1500, save the model, and reopen it in Visual Studio. Also make sure the Visual Studio project’s Target Server Version is set to Azure Analysis Services or SQL Server 2019, and that the compatibility level matches 1500. If the model uses features introduced in 1600 (for example certain metadata properties or Power BI–specific features), those must be removed before lowering the compatibility level.
Also ensure your Visual Studio Analysis Services extension is up to date, because the workspace engine version is tied to the installed designer components.
Helpful Reference:
https://learn.microsoft.com/en-us/analysis-services/tabular-models/compatibility-level-for-tabular-models-in-analysis-services?view=sql-analysis-services-2025
Hope this helps, Please let us know if you have any questions and concerns.