共用方式為


Get-AzureSqlDatabaseOperation

取得 Azure 伺服器上的資料庫作業狀態。

注意

本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰

Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (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>]

Description

Get-AzureSqlDatabaseOperation Cmdlet 會取得指定 Azure 伺服器上的資料庫作業狀態。 如果您只 指定 ServerNameConnectionContext 參數,Cmdlet 會取得伺服器的所有資料庫作業。 如果您也使用 DatabaseDatabaseName 參數指定資料庫,這個 Cmdlet 會取得指定資料庫的所有作業。 如果您指定作業 GUID 和 ServerNameConnectionContext,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 取得狀態的特定資料庫作業。 您可以要求 Azure SQL 資料庫 或伺服器的所有資料庫作業,以取得作業識別碼。 如果您指定此參數,則必須指定 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

Guid

輸出

Microsoft.WindowsAzure.Commands.SqlDatabase.Services.Server.Database.DatabaseOperationResponseList[]

如果您取得多個作業,此 Cmdlet 會傳回 DatabaseOperationResponseList 物件的陣列

Microsoft.WindowsAzure.Commands.SqlDatabase.Services.Server.Database.DatabaseOperationResponse