Free tier Azure SQL database

heretoinfinity 6 Reputation points
2021-05-12T01:42:46.853+00:00

I see on this page that I can try Azure SQL database but when I go to the portal, I can't find it. With every instance of database that I use, I find that I am getting charged. Is there a step I am missing?

Azure SQL Database
{count} vote

2 answers

Sort by: Most helpful
  1. Alberto Morillo 32,891 Reputation points MVP
    2021-05-12T03:59:49.063+00:00

    You can create a free version of Azure SQL Database using PowerShell.

    $sqlServer = New-AzureRmSqlServer -ServerName $sqlServerName -Location $desiredLocation.Location -ResourceGroupName $resourceGroup.ResourceGroupName -SqlAdministratorCredentials $sqlAdminCredential -ErrorAction Stop -Verbose
    
    New-AzureRmSqlDatabase -DatabaseName $DatabaseName  -ServerName $sqlServer.ServerName -ResourceGroupName $resourceGroup.ResourceGroupName -Edition 'Free' -RequestedServiceObjectiveName 'Free'
    

    You can have only one free Azure SQL Server database per region, it reverts to Standard Edition after 365 days.

    Here's the list of Azure locations that do support the creation of a limited time (365 days) Free Azure SQL Server and Azure SQL Database:

    Location           DisplayName          SQL?
    --------           -----------          -----
    australiaeast      Australia East       WORKS
    australiasoutheast Australia Southeast  WORKS
    centralindia       Central India        WORKS
    eastasia           East Asia            WORKS
    francecentral      France Central       WORKS
    japaneast          Japan East           WORKS
    japanwest          Japan West           WORKS
    koreacentral       Korea Central        WORKS
    koreasouth         Korea South          WORKS
    northcentralus     North Central US     WORKS
    northeurope        North Europe         WORKS
    southeastasia      Southeast Asia       WORKS
    southindia         South India          WORKS
    uksouth            UK South             WORKS
    ukwest             UK West              WORKS
    westcentralus      West Central US      WORKS
    westeurope         West Europe          WORKS
    westindia          West India           WORKS
    westus2            West US 2            WORKS
    

    Hope this helps.

    6 people found this answer helpful.

  2. SUNOJ KUMAR YELURU 13,941 Reputation points MVP
    2021-05-12T02:47:49.42+00:00

    Hi @heretoinfinity

    Thank you for posting in Q & A.

    Eligible new users get $200 Azure credit in your billing currency for the first 30 days and a limited quantity of free services for 12 months with your Azure free account
    https://learn.microsoft.com/en-us/azure/cost-management-billing/manage/avoid-charges-free-account

    Check usage of free services included with your Azure free account
    https://learn.microsoft.com/en-us/azure/cost-management-billing/manage/check-free-service-usage

    95784-image.png

    Your question is already answered in Q & A, please refer the below url's
    https://learn.microsoft.com/en-us/answers/questions/278750/about-12-months-free-azure-resources.html

    https://learn.microsoft.com/en-us/answers/questions/338565/i-thought-i-am-going-to-get-some-free-services-in.html

    If the Answer is helpful, please click Accept Answer and up-vote, this can be beneficial to other community members.

    0 comments No comments