Azure SQL Database
An Azure relational database service.
6,190 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
We use the read scale-out feature in Azure SQL, but we have instances where this has been disabled. We want to query using TSQL to determine whether read scale-out has been enabled or disabled for a given database. We would be just as happy if we could query the master database and get this information for all databases in the instance.
Is this possible?
You can consider using sp_invoke_external_rest_endpoint to make a request to this API.
Sweet! Let me give this a try. Not TSQL but I can probably work with this. Thank you!!!