Home > Mobile >  cannot restore database
cannot restore database

Time:11-03

whenever I try to restore a database I got an error message

System.Data.SqlClient.SqlError: CREATE DATABASE or ALTER DATABASE failed because the resulting cumulative database size would exceed your licensed limit of 10240 MB per database. (Microsoft.SqlServer.SmoExtended)

because I am using SQL server express edition and the database size is more than 10GB.

I have the backup file only and I do not have access to reduce the data files

BTW data files are 20GBs.

is there a solution for this?

CodePudding user response:

SQL Server Developer Edition is a free, unlimited edition of SQL Server for Development and Test purposes. You can download it here.

CodePudding user response:

Not with SQL Express. Sign up for a Visual Studio subscription (free) and you can get a fully functional copy of SQL Server.

https://visualstudio.com/

  • Related