支持在托管 Azure SQL 数据库中创建系统数据库的版本

Edition supported for creating a system database in managed Azure SQL database

我正在部署一个 ARM 模板,我需要在其中创建一个系统数据库。但是在部署期间我总是收到错误 "The system is not a valid edition..."

      "location": "westus",
      "properties": {
        "edition": "System",
        "status": "Online",
        "serviceLevelObjective": "System2",
        "collation": "SQL_Latin1_General_CP1_CI_AS",
        "maxSizeBytes": "32200054720",
        "requestedServiceObjectiveName": "System2",
        "defaultSecondaryLocation": "East US",
        "containmentState": 2
      },

是否有任何 reference/article 指向每个版本和服务的允许值列表 objective?

您无法在 SQL Azure 中创建系统数据库。该服务已经为您提供了一个名为系统的数据库。这就是您的请求失败的原因。