Start-AzureSqlDatabaseImport
啟動從 Blob 記憶體到 Azure SQL 資料庫 的匯入作業。
注意
本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰。
Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。
語法
Start-AzureSqlDatabaseImport
-SqlConnectionContext <ISqlServerConnectionInformation>
-StorageContainer <AzureStorageContainer>
-DatabaseName <String>
-BlobName <String>
[-Edition <DatabaseEdition>]
[-DatabaseMaxSize <Int32>]
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Start-AzureSqlDatabaseImport
-SqlConnectionContext <ISqlServerConnectionInformation>
-StorageContext <IStorageContext>
-StorageContainerName <String>
-DatabaseName <String>
-BlobName <String>
[-Edition <DatabaseEdition>]
[-DatabaseMaxSize <Int32>]
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Description
Start-AzureSqlDatabaseImport Cmdlet 會啟動從 Azure Blob 記憶體到 Azure SQL 資料庫 的匯入作業。 如果資料庫不存在,此 Cmdlet 會使用您指定的大小和版本值來建立它。 此作業需要資料庫伺服器連接內容。 使用 Get-AzureSqlDatabaseImportExportStatus Cmdlet 取得匯入作業的狀態。
範例
範例 1:匯入資料庫
PS C:\>$Credential = Get-Credential
PS C:\> $SqlContext = New-AzureSqlDatabaseServerContext -ServerName $ServerName -Credentials $Credential
PS C:\> $StorageContext = New-AzureStorageContext -StorageAccountName $StorageName -StorageAccountKey $StorageKey
PS C:\> $Container = Get-AzureStorageContainer -Name $ContainerName -Context $StorageContext
PS C:\> $ImportRequest = Start-AzureSqlDatabaseImport -SqlConnectionContext $SqlContext -StorageContainer $Container -DatabaseName $DatabaseName -BlobName $BlobName
此範例會將 $BlobName 變數中 Blob 記憶體的匯入程式起始至名為 DatabaseName 的 Azure SQL 資料庫。
參數
-BlobName
指定此 Cmdlet 匯入資料庫的 Azure Blob 記憶體名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-DatabaseMaxSize
指定資料庫的大小上限,以 GB 為單位。 如果資料庫不存在,此 Cmdlet 會根據這個大小上限來建立它。 可接受的值會根據版本而有所不同。
類型: | Int32 |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-DatabaseName
指定資料庫的名稱。 如果資料庫不存在,此 Cmdlet 會建立它,並指派此參數指定的名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-Edition
指定資料庫的版本。 如果資料庫不存在,此 Cmdlet 會建立為這個版本。 有效值為:
- 無
- Web
- 業務
- 基本
- Standard
- Premium
預設值為 Web。
類型: | DatabaseEdition |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Profile
指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。
類型: | AzureSMProfile |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-SqlConnectionContext
指定包含資料庫之伺服器的連接內容。
類型: | ISqlServerConnectionInformation |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-StorageContainer
指定包含此 Cmdlet 匯入資料庫之 Blob 的記憶體容器。
類型: | AzureStorageContainer |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-StorageContainerName
指定 Blob 記憶體容器的名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-StorageContext
指定 Blob 記憶體容器的內容。
類型: | IStorageContext |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
輸出
Microsoft.WindowsAzure.Commands.SqlDatabase.Services.ImportExportRequest