Is it Azure Managed Instance storage having size limit to upload the backup file?

pdsqsql 391 Reputation points
2024-05-17T19:05:42.0633333+00:00

Hello,

I am trying to upload the .bak files from my on-prem Sql Server database backup but it's not letting me to load it.

I tried with smaller Database and that works but trying to even less then 300 MB database size but not working.

Is it Database should be in FULL RECOVERY MODEL or Database FULL backup can also work?

Azure SQL Database
Azure
Azure
A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.
1,031 questions
{count} votes

1 answer

Sort by: Most helpful
  1. UdayMishra-7885 0 Reputation points
    2024-05-17T23:54:13.55+00:00

    Yes, Azure SQL Managed Instance has size limits for uploading backup files:

     

    1. Blob Storage: Individual blobs can be up to 200 GB. Use multiple smaller files for larger databases.
    2. Backup and Restore: You can use the RESTORE DATABASE ... FROM URL command with multiple files to handle large backups.
    3. Storage Limits: Managed Instances can support up to 16 TB, depending on the service tier.
    4. Performance: Network bandwidth and performance can affect upload and restore times.

     

    Use striped backups and compression to manage larger backups effectively. Check Azure documentation for the latest limits and best practices.