Migrate SQL to Azure Managed Instance. What happens to edition?

Mark Gordon 901 Reputation points
2022-12-22T17:48:23.5+00:00

Fellow DBA's.

If you are migrating an on-premise SQL 2016 Standard Edition to Azure Managed Instance, does it stay the same edition or does it automatically jump to Enterprise?
Thanks
MG

Azure SQL Database
0 comments No comments
{count} vote

Accepted answer
  1. Alberto Morillo 32,886 Reputation points MVP
    2022-12-23T15:10:14.75+00:00

    The edition is no longer de same. Once you migrate to Azure SQL Managed Instance the edition is now "'Azure SQL Managed Instance'". The edition is no longer "Standard" or "Enterprise"

    0 comments No comments

4 additional answers

Sort by: Most helpful
  1. Alberto Morillo 32,886 Reputation points MVP
    2022-12-22T18:36:25.297+00:00

    Once you migrate the instance to Azure SQL Managed Instance the Edition name is "Azure SQL Managed Instance" as mentioned here. The Id of the edition is 8 as shown on the query below:

    SELECT CASE ServerProperty('EngineEdition')  
    WHEN 1 THEN 'Personal'  
    WHEN 2 THEN 'Standard'  
    WHEN 3 THEN 'Enterprise'  
    WHEN 4 THEN 'Express'  
    WHEN 5 THEN 'SQL Database'  
    WHEN 6 THEN 'Azure Synapse Analytics'  
    WHEN 8 THEN 'Azure SQL Managed Instance'  
    WHEN 9 THEN 'Azure SQL Edge'  
    WHEN 11 THEN 'Azure Synapse serverless SQL pool'  
    ELSE 'Unknown'  
    END  
    
    0 comments No comments

  2. Mark Gordon 901 Reputation points
    2022-12-23T14:28:40.673+00:00

    HI Alberto,

    What I am asking is if the edition stays the same (i.e Standard) ?

    Mark

    0 comments No comments

  3. Mark Gordon 901 Reputation points
    2022-12-23T16:17:59.747+00:00

    Ok. So, then how is it handling the differernce between you original Standard vs Enterprise when enabling features? Are you saying that my original Standard will become fully Enterprise Featured?


  4. Mark Gordon 901 Reputation points
    2022-12-24T16:08:40.717+00:00

    Thx Alberto