I'm trying to delete large data from Azure SQL table using delete command, but when deleting data then database data storage will be increased. How could I stop that or is there any option in Azure to minimize transaction logs?
I don't want to use truncate because I don't need to delete all data in the table.
delete top(10000)
from Crumbs
where CrumbId <= @maxId and
TenantId =@tenantId