HiveBrain v1.2.0
Get Started
← Back to all entries
patternsqlModerate

Overcoming the SQL Server Express Edition limitation

Submitted by: @import:stackexchange-dba··
0
Viewed 0 times
expressthesqlovercominglimitationserveredition

Problem

Microsoft SQL Server 2014 Express edition has a database size limit to 10GB. Now, is that just for a single instance or the overall size that the edition will allow? Or does that means that I can have as many databases using the edition provided each database is less than 10GB?

Solution

From Express Edition:


SQL Server Express includes 10GB of storage per database

and from Features Supported by the Editions of SQL Server 2014, Cross-Box Scale Limits:


Maximum relational database size: 10 GB

This latter reference makes it clearer that the 10GB limit per database is applied to relational data, so it excludes log files* as well as FILESTREAM and FileTable data (both supported in Express Edition).

* See Database size limitation in SQL Express by Arvind Shyamsundar

Context

StackExchange Database Administrators Q#139240, answer score: 17

Revisions (0)

No revisions yet.