何时使用Azure Blob存储和Azure文件共享?

时间:2020-06-01 06:11:36

标签: azure azure-sql-database azure-blob-storage azure-files

Azure新手在这里。 我对将数据从内部部署移动到云数据库有体系结构的要求。由于安全性限制和时间表的限制,分两个步骤完成。

  1. 将文件移动到Azure Blob存储
  2. 从blob读取并导入到sql数据库。

对于非结构化数据,建议使用天蓝色斑点。但是,我们要导出到云的数据是将数据从sql表简单导出到csv文件。

对于此类要求,建议什么? Azure blob或Azure文件共享?何时使用Blob和Azure文件共享?

1 个答案:

答案 0 :(得分:0)

实际上,如果要将数据库从本地/本地SQL Server迁移到Azure SQL,有很多方法可以直接帮助实现这一点,而无需Blob或文件存储。

例如:

  1. 使用Data Migration Assistant(DMA)帮助您将数据/数据库迁移到Azure。

    参考:Migrate on-premises SQL Server or SQL Server on Azure VMs to Azure SQL Database using the Data Migration Assistant

  2. SQL Server Management Studio(SSMS)任务:将数据库部署到Microsoft Azure SQL数据库。

    enter image description here

    参考:Using the Deploy Database to SQL Azure Wizard in SQL Server Management Studio to move to the Cloud

当然,您可以将sql服务器数据作为CSV文件导出到Blob或文件存储中,然后将csv文件导入到Azure SQL。通常,我们经常将Blob存储与Azure SQL数据库一起使用。由您自己决定,请参考提到的document @Gaurav Mantri-AIS。

希望这会有所帮助。