Get-AzureSqlDatabaseImportExportStatus
取得匯入或匯出要求的狀態。
注意
本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰。
Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。
語法
Get-AzureSqlDatabaseImportExportStatus
-Username <String>
-Password <String>
-ServerName <String>
-RequestId <String>
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Get-AzureSqlDatabaseImportExportStatus
-Request <ImportExportRequest>
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Description
Get-AzureSqlDatabaseImportExportStatus Cmdlet 會取得匯入或匯出要求的狀態。 Start-AzureSqlDatabaseImport 或 Start-AzureSqlDatabaseExport Cmdlet 會起始要求。 您可以使用 Request 參數來指定要求物件,也可以使用 RequestId 參數和 Username、Password 和 ServerName 參數來識別要求。
範例
範例 1:取得匯出要求的狀態
PS C:\> $ExportRequest = Start-AzureSqlDatabaseExport -SqlConnectionContext $SqlContext -StorageContainer $Container -DatabaseName $DatabaseName -BlobName $BlobName
PS C:\> Get-AzureSqlDatabaseImportExportStatus -Request $ExportRequest
第一個命令會建立匯出要求,然後將它儲存在$ExportRequest變數中。
第二個命令會取得儲存在 $ExportRequest 中的導出要求狀態。
參數
-Password
指定連線到 Azure SQL 資料庫 伺服器所需的密碼。 如果您指定 RequestId 參數,則必須指定此參數。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-Profile
指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。
類型: | AzureSMProfile |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Request
指定 ImportExportRequest 物件。 若要取得匯入或導出要求物件,請使用 Start-AzureSqlDatabaseImport 或 Start-AzureSqlDatabaseExport Cmdlet。
類型: | ImportExportRequest |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-RequestId
指定此 Cmdlet 取得狀態之匯入或匯出作業的 GUID。 如果您指定此參數,則必須指定 UserName、 Password和 ServerName 參數。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-ServerName
指定 Azure SQL 資料庫 伺服器的名稱。 如果您指定 RequestId 參數,則必須指定此參數。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-Username
指定連線到 Azure SQL 資料庫 伺服器所需的使用者名稱。 如果您指定 RequestId 參數,則必須指定此參數。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
輸出
Microsoft.WindowsAzure.Commands.SqlDatabase.Services.ImportExport.StatusInfo