你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Start-AzureSqlDatabaseImport
启动从 blob 存储到Azure SQL 数据库的导入操作。
注意
本文档中引用的 cmdlet 用于管理使用 Azure Service Manager (ASM) API 的旧式 Azure 资源。 创建新资源时,建议不要使用旧的 PowerShell 模块,因为计划将停用 ASM。 有关详细信息,请参阅 Azure Service Manager 停用。
Az PowerShell 模块是建议用于管理 PowerShell 的 Azure 资源管理器 (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>]
说明
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
- 业务
- 基本
- 标准
- 高级
默认值为 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