0

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?

3
  • Can you provide what is your expected output? Commented Feb 4 at 17:42
  • @RakeshGovindula My expected output is that the cube builds without issue and without throwing any error(which is what occurs on the other server(s)) Commented Feb 4 at 21:18
  • The issue magically resolved itself without any changes from my side, I think this is likely a issue with Azure that is simply not documented... Commented Feb 11 at 16:23

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.