I have a large database, about 6Gig in size , its a .bacpac file and I want to copy it to Azure. I am using SSMS and selecting "Import Data-tier Application". It takes a very long time and i get an error "System out of memory exception"
How can I transfer the database to Azure ?
you can try creating .bak extension of backup export use SSMS to restore which is quick
– May 22 '22 at 08:23if sourcedb is livedb, migration recommended to go to SQL Managed Instance. If ready to use PaaS (Azure SQL Database), then either Migration Assistant or Backup/Restore by uploading db file to storage account and import or SSMS.
– May 22 '22 at 10:24