I'm looking for a way to extract specific information about Azure SQL Database: Used space, Allocated Space, and Maximum storage size. I know that information is available from Azure portal but I would like to use PowerShell to extract it. I've managed to pull one bit of information "Maximum storage size" using the command below but I cannot find other required information.
Code to extract information about database capacity (Maximum storage size)
Get-AzSqlDatabase -ServerName $ServerName -ResourceGroupName $ResourceGroupName | Select-Object ServerName, DatabaseName, @{Name="MaxSizeGB";Expression={$_.MaxSizeBytes/1GB}}
I know that that information is available using T-SQL but connecting to each server to run T-SQL it's not possible in this situation. https://learn.microsoft.com/en-us/azure/sql-database/sql-database-file-space-management
Does anyone know if there's another option to pull out that information utilizing Azure PowerShell? I've tried to use Get-AzMetric command to extract something but without luck.
You can get a database's max size using the Get-AzureRmSqlDatabase commandlet (from the AzureRM.Sql module). The commandlet returns an
AzureSqlDatabaseModel
object, which includes aMaxSizeBytes
property.To get ALL the data points you asked for you checkout the Get-AzureRmMetric commandlet. It lets you query specific metrics for an Azure Resource, such as an ASD. You can find a list of metrics organized by resource in the article Supported metrics with Azure Monitor under the
Microsoft.Sql/servers/databases
section. I believe the following maps metrics to what you're looking for...You'd query the metric out with something like the following:
I'm pulling database size here, but you can get any of the metrics in your list.