I\'m doing my best an deleting rows and rebuilding indexes but the size of the database is growing really fast and I can\'t see the effect of my operations.
Is there
Check out this Microsoft Post..
https://docs.microsoft.com/en-us/azure/sql-database/sql-database-file-space-management#reclaim-unused-allocated-space
Reclaim unused allocated space DBCC shrink Once databases have been identified for reclaiming unused allocated space, modify the name of the database in the following command to shrink the data files for each database.
SQL
-- Shrink database data space allocated.
DBCC SHRINKDATABASE (N'db1')
SHRINKFILE was not working for me on Azure SQL