Creating a SQL DB in Azure using the SSMS results in higher performance tier

Alto, Abraham 60 Reputation points
2024-08-30T22:35:23.13+00:00

We frequently delete and recreate SQL databases in Azure using SSMS. However, this process often results in the databases being provisioned at a higher performance tier, which increase costs... Is there a way to prevent this in SSMS, or is there a more cost-effective approach within SSMS?

Azure SQL Database
{count} votes

Accepted answer
  1. TP 98,086 Reputation points
    2024-08-31T00:31:45.2466667+00:00

    Hi Abraham,

    When creating a new database using SSMS, are you making sure to specify the tier and options you want via the Configure SLO tab? Please see screenshot below:qna azure sql database create ssms

    Or if creating the database via SQL:

    CREATE DATABASE [mydatabasename]  (EDITION = 'Standard', SERVICE_OBJECTIVE = 'S2', MAXSIZE = 250 GB) WITH LEDGER = OFF;
    
    

    Please click Accept Answer and upvote if the above was helpful.

    Thanks.

    -TP

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.