Additional SQL Server features and topics not covered by specific categories
SELECT * FROM sys.messages WHERE message_id = 53
returns no rows. That is, there is no error message 53 from SQL Server.
It would have helped if you had included the full error message, but the number 53 seems familiar. Some client APIs cite this number when they cannot connect to the SQL Server instance you have specified.
Reasons for this includes:
- Server and/or instance name misspelled.
- SQL Server is not running.
- Browser service is not running.
- Blocking firewalls.
The list is not exhaustive.
It seems that in your case, you get the issue in specific cloud environments. It is quite likely that your problems are related to configuration in these environments, and you should probably inquire with these cloud operators, for instance by opening a support case.