你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Get-AzureSqlDatabaseServiceObjective

获取Azure SQL 数据库服务器的服务目标。

注意

本文档中引用的 cmdlet 用于管理使用 Azure Service Manager (ASM) API 的旧式 Azure 资源。 创建新资源时,建议不要使用旧的 PowerShell 模块,因为计划将停用 ASM。 有关详细信息,请参阅 Azure Service Manager 停用

Az PowerShell 模块是建议用于管理 PowerShell 的 Azure 资源管理器 (ARM) 资源的 PowerShell 模块。

语法

Get-AzureSqlDatabaseServiceObjective
   -Context <IServerDataServiceContext>
   [-ServiceObjective <ServiceObjective>]
   [-ServiceObjectiveName <String>]
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]
Get-AzureSqlDatabaseServiceObjective
   -ServerName <String>
   [-ServiceObjective <ServiceObjective>]
   [-ServiceObjectiveName <String>]
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]

说明

Get-AzureSqlDatabaseServiceObjective cmdlet 获取Azure SQL 数据库服务器的服务目标。 服务目标称为性能级别。 如果未指定服务目标,此 cmdlet 将返回指定服务器的所有有效服务目标。

此 cmdlet 适用于基本、标准和高级服务层。

示例

示例 1:使用连接上下文获取所有服务目标

PS C:\> Get-AzureSqlDatabaseServiceObjective -Context $Context

此命令获取连接上下文$Context指定服务器的所有服务目标。

示例 2:使用服务器名称获取所有服务目标

PS C:\> Get-AzureSqlDatabaseServiceObjective -ServerName "Server01"

此命令获取名为 Server01 的服务器的所有服务目标。

参数

-Context

指定服务器的连接上下文。

类型:IServerDataServiceContext
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-Profile

指定此 cmdlet 从中读取的 Azure 配置文件。 如果未指定配置文件,此 cmdlet 将从本地默认配置文件中读取。

类型:AzureSMProfile
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-ServerName

指定服务器的名称。

类型:String
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-ServiceObjective

指定一个对象,该对象表示此 cmdlet 获取的服务目标。 有效值为:

  • 基本:dd6d99bb-f193-4ec1-86f2-43d3bccbc49c
  • 标准 (S0): f1173c43-91bd-4aaa-973c-54e79e15235b
  • 标准 (S1): 1b1ebd4d-d903-4baa-97f9-4ea675f5e928
  • 标准 (S2): 455330e1-00cd-488b-b5fa-177c226f28b7
  • *标准 (S3): 789681b8-ca10-4eb0-bdf2-e0b050601b40
  • Premium (P1): 7203483a-c4fb-4304-9e9f-17c71c904f5d
  • Premium (P1): 7203483a-c4fb-4304-9e9f-17c71c904f5d
  • Premium (P2):a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0
  • Premium (P3):a7c4c615-cfb1-464b-b252-925be0a19446

*标准版(S3)是最新SQL 数据库更新 V12(预览版)的一部分。 有关详细信息,请参阅 Azure 库中的 Azure SQL 数据库 V12 预览版https://azure.microsoft.com/documentation/articles/sql-database-preview-whats-new/)中的新增功能。

类型:ServiceObjective
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-ServiceObjectiveName

指定要获取的服务目标的名称。 有效值为:基本、S0、S1、S2、S3、P1、P2 和 P3。

类型:String
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

输入

Microsoft.WindowsAzure.Commands.SqlDatabase.Services.Server.ServiceObjective

输出

IEnumerable\<Microsoft.WindowsAzure.Commands.SqlDatabase.Services.Server.ServiceObjective\>