About 117,000 results
Open links in new tab
  1. What is the best way to backup an Azure sql database?

    Feb 9, 2024 · 3 I have an Azure SQL database that I want to backup offline, i.e. not on Azure. I need to create a .bacpac file first and move that file. Now if I use az sql export etc .... this produces …

  2. Restoring SQL Server backup to Azure SQL Database

    Oct 30, 2015 · 80 Is there a way to simply take a SQL backup .bak file, and using that as a restore point to generate a new database on Azure SQL Database? The wizard that I see generally recommended …

  3. sqlpackage - How can i backup and Azure sql database and save to ...

    Apr 14, 2025 · It then uploads the .bacpac file to a specified Azure Blob Storage container using the Azure CLI, ensuring the file is overwritten if it already exists. This process enables a reliable backup …

  4. The fastest backup/restore strategy for Azure SQL databases?

    What is the fastest way to backup/restore Azure SQL database? The background: We have the database with size ~40 GB and restoring it from the .bacbac file (~4GB of compressed data) in the …

  5. Importing .bak file into Azure SQL Database - Stack Overflow

    Jun 2, 2023 · I have received a .bak file that contains a database backup, and I need to import it into an Azure SQL Database. I have tried using the "Restore" feature in Azure portal, but it …

  6. Where to find Azure SQL Database backups? - Stack Overflow

    Dec 22, 2021 · I have created an azure SQL database, single database. I would like to see where my backup files are saved. That is not possible. The backups are stored securely with no direct …

  7. How to create BAK file from azure sql db - Stack Overflow

    Apr 17, 2017 · 16 However my new host allows to import sql db backup-files (.BAK) only; SQL Azure doesn't provide a native way to generate '.bak' format backup file. If you did need this format file, you …

  8. Backup Azure Database to .BAK file using SSMS? - Stack Overflow

    May 21, 2019 · Then, on your Azure account (or wherever your Database is that doesn't allow you to create a .BAK file is, do the following) Connect to it and navigate to Tasks > Export Data-tier …

  9. How can i restore an azure sql db if it is deleted?

    Jan 18, 2024 · Go the the Azure Sql Server where the database used to belong to in the Azure Portal. From there click on Data management > Deleted databases or Data management > Backups > …

  10. t sql - How to take backup of azure SQL-Managed Instance backup to ...

    Apr 1, 2020 · WITH IDENTITY = 'SHARED ACCESS SIGNATURE' , SECRET = 'Pasted my sas token generated from azure portal blob storage' go BACKUP DATABASE [DB_Name] TO URL = 'blob …