Got a database in azure called Logging, which contains a table Log.
Select count(*) from log
returns 0
The database is empty.
Attempting to insert says it's full. Azure control panel reports it as being full (more than full, actually), but I don't know why or how to fix it.
SELECT DATABASEPROPERTYEX ('Logging' , 'MaxSizeInBytes' )
Returns 1073741824
SELECT SUM(reserved_page_count) * 8192
FROM sys.dm_db_partition_stats
Returns 1081032704
Any ideas? The normal repair commands don't seem to be supported in azure.