Hi experts,
Is there any way to find out what the Azure SQL tier of a sandbox environment?
I ran the below query
SELECT d.name,
slo.*
FROM sys.databases d
JOIN sys.database_service_objectives slo
ON d.database_id = slo.database_id;
But it only returned the Edition - BusinessCritical, and service objective - "ElasticPool", which is not very useful.
Thanks,