SQL Database for Azure Student

Ervin Wilneder 1 Reputation point
2021-09-23T13:19:46.797+00:00

Hi!

Recently I created an account with my student email. Is there any way to create a simple SQL database (eg. sakila demo) without spending the free credits? I've tried to create an azure SQL database but it is consuming nearly 4 usd per day.

Azure SQL Database
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Alberto Morillo 32,806 Reputation points MVP
    2021-09-23T14:39:00.86+00:00

    Please try the trick provided here.

    You can also use below PowerShell to create a free one.

    New-AzureRmSqlDatabase -DatabaseName $DatabaseName  -ServerName $sqlServer.ServerName 
    -ResourceGroupName $resourceGroup.ResourceGroupName -Edition 'Free' 
    -RequestedServiceObjectiveName 'Free'
    
    1 person found this answer helpful.
    0 comments No comments

  2. Oury Ba-MSFT 16,076 Reputation points Microsoft Employee
    2021-09-24T18:17:42.227+00:00

    Hi @Ervin Wilneder Thank you for posting your question on Microsoft Q&A.

    You can explore all the database SQL pricing
    SQL Database serverless is best for scenarios where usage is intermittent and unpredictable and you only pay for compute resources you use on a per-second basis, which optimizes overall price performance. Please check this documentation , it will help better help you understand how you can manage your Azure SQL Database costs.

    135164-image.png

    135165-image.png

    Please let me know if you have additional queries

    Regards,
    Oury