Use Case: We are deploying a Tabular Database to an Azure Analysis Services Instance located in West Europe, using a .NET programm.
Here is the relevant part of the C#-code:
using Microsoft.AnalysisServices.Tabular;
...
Server server = new Server();
server.Connect(connectionString);
Database olapDb = JsonSerializer.DeserializeDatabase(olapDbScript);
server.Databases.Add(olapDb);
olapDb.Update(UpdateOptions.ExpandFull);
...
Problem: olapDb.Update() throws following exception:
An unexpected error occured (file 'tmsavepoint.cpp, line 1503, function 'TMSavePoint::GetProxyImpl')
at Microsoft.AnalysisServices.Tabular.Model.SaveChangesImpl(SaveOptions options)
...
Note: We get the same message also with SQL Server Analysis Services 2019 (Build 15.0.32.52).
What is wrong there?