I have a large 350GB database (local server) I need to create a .bacpac file of. We're looking at using Azure Blob storage as the target, since there is only 49GB of free space remaining on the local servers. When going through the dialogs, it asks where to put the temporary file... does this mean the .bacpac file is generate entirely on the local system before being sent to Azure?
1条答案
按热度按时间lb3vh1jj1#
When you want to export the database from the SSMS to the Azure blob storage
.bacpac
file on your local system, as specified by the local directory you provide..bacpac
file is transferred to Azure storage, the temporary file will remain in the specified local directory unless you manually delete it.To ensure a successful export, make sure to have enough free space in the specified local directory to accommodate the temporary .bacpac file.
Reference: Export a Data-tier Application