I have a SQL Server 2022 server where I am building a Azure Analysis Service(AAS) cube, amongst other code I have the following:
Tabular.Database d = ssasServer.Databases.FindByName(dbName);
d.Model = model;
d.Model.SaveChanges(Tabular.SaveFlags.Default);
When I run this against a specific AAS instance(A) from a specific server(B), it is throwing the following error:
Microsoft.AnalysisServices.OperationException: 'Failed to save modifications to the server. Error returned: 'An unexpected error occurred (file 'Error.cpp', line 116, function 'err::BaseError::ThrowFromTLS').
However running the same code with the same cube on another server(C) works without issue... In fact running any cube against this specific instance(A) from server(B) is resulting in this error.
What does this error mean? How do I get more information? Is there a way I can view Error.cpp? I don't think the issue is the cube or AAS instance but the connection between the two, how do I get more information on this I only see a single post and it doesn't provide more information?