Question

I'm trying to deploy a tabular model to a server using the "Analysis Services Deployment Wizard".

When attempting to deploy,I get the below error.

The JSON DDL request failed with the following error: Failed to execute XMLA. Error returned: 'The column 'Date Offset' in table 'Date' has invalid bindings specified.

The column in question uses the below calculation, which was found here

INT([Date] - TODAY())

What should I look for in order to resolve this error?

Was it helpful?

Solution

The problem in this case was that I was trying to replace an existing column also named 'Date Offset' - this was not a calculated column, but taken from the source table.

Resolution was to do the deployment in 2 phases, first remove the old column, then deploy again to add the new calculated column.

OTHER TIPS

I was able to solve this by deleting the cube completely off of the server before doing another deploy.

Tried different methods like renaming column and removed filters applied, didn't solved this issue. At the end this issue fixed by just deleting existing cube and redeployed

In my case, I remove duplicated columns and the error persisted.

It only worked when I did delete model in azure --> analysis services.

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top