你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzureSqlDatabaseOperation
获取 Azure 服务器上的数据库操作的状态。
注意
本文档中引用的 cmdlet 用于管理使用 Azure Service Manager (ASM) API 的旧式 Azure 资源。 创建新资源时,建议不要使用旧的 PowerShell 模块,因为计划将停用 ASM。 有关详细信息,请参阅 Azure Service Manager 停用。
Az PowerShell 模块是建议用于管理 PowerShell 的 Azure 资源管理器 (ARM) 资源的 PowerShell 模块。
语法
Get-AzureSqlDatabaseOperation
-ConnectionContext <IServerDataServiceContext>
[-Database <Database>]
[-DatabaseName <String>]
[-OperationGuid <Guid>]
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Get-AzureSqlDatabaseOperation
-ServerName <String>
[-Database <Database>]
[-DatabaseName <String>]
[-OperationGuid <Guid>]
[-Profile <AzureSMProfile>]
[<CommonParameters>]
说明
Get-AzureSqlDatabaseOperation cmdlet 获取指定 Azure 服务器上的数据库操作的状态。 如果仅 指定 ServerName 或 ConnectionContext 参数,则 cmdlet 将获取服务器的所有数据库操作。 如果还使用 Database 或 DatabaseName 参数指定数据库,则此 cmdlet 将获取指定数据库的所有操作。 如果指定操作 GUID 和 ServerName 或 ConnectionContext,则 cmdlet 将获取单个数据库操作。
示例
示例 1:获取数据库的所有数据库操作的状态
PS C:\> $Operations = Get-AzureSqlDatabaseOperation -ConnectionContext $Context -DatabaseName "Database17"
此命令获取连接上下文$Context指定的服务器上名为 Database17 的数据库上所有数据库操作的状态。
示例 2:获取服务器的所有数据库操作的状态
PS C:\> $Operations = Get-AzureSqlDatabaseOperation -ConnectionContext $Context
此命令获取连接上下文$Context指定服务器上所有数据库操作的状态。
参数
-ConnectionContext
指定服务器的连接上下文。
类型: | IServerDataServiceContext |
别名: | Context |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Database
指定表示Azure SQL 数据库的对象。 如果指定此参数,则必须指定 ServerName 参数或 ConnectionContext 参数。
类型: | Database |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-DatabaseName
指定数据库的名称。 如果指定此参数,则必须指定 ServerName 参数或 ConnectionContext 参数。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-OperationGuid
指定表示此 cmdlet 获取其状态的特定数据库操作的操作 ID。 可以通过请求Azure SQL 数据库或服务器的所有数据库操作来获取操作 ID。 如果指定此参数,则必须指定 ServerName 参数或 ConnectionContext 参数。
类型: | Guid |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Profile
指定此 cmdlet 从中读取的 Azure 配置文件。 如果未指定配置文件,此 cmdlet 将从本地默认配置文件中读取。
类型: | AzureSMProfile |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ServerName
指定服务器的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
输入
Microsoft.WindowsAzure.Commands.SqlDatabase.Services.Server.Database
Microsoft.WindowsAzure.Commands.SqlDatabase.Model.SqlDatabaseServerContext
输出
Microsoft.WindowsAzure.Commands.SqlDatabase.Services.Server.Database.DatabaseOperationResponseList[]
如果获取多个操作,此 cmdlet 将返回 DatabaseOperationResponseList 对象的数组。
Microsoft.WindowsAzure.Commands.SqlDatabase.Services.Server.Database.DatabaseOperationResponse