An Azure relational database service.
From your screenshot i understand may be db exist in your Azure SQL database. so first check below points
- Go to SQL servers → bus3393jg → Databases.
- If a database with the same name exists, delete it or rename your new one.
- Use a new database name (e.g.,
BUS3DB_2026) and redeploy. Conflicts often clear when the name is unique. - Azure for Students subscriptions have limited SQL quotas. So, Go to Subscription → Usage + quotas → SQL Database and confirm you haven’t exceeded limits.
- If the region is temporarily restricted for your subscription, try deploying in another region (e.g., East US or West Europe).
- Open Activity log → Filter by resource group bus3393jg → Error details. show search or look like Database creation failed due to existing resource or operation conflict.
- If the server was created but the database failed:
- Delete the server and recreate it.
- Or use Azure CLI: az sql server delete --name bus3393jg --resource-group bus3393jg
Thanks.