Suddenly, I get the following error when trying to modify my Umbraco sqlce database.
The database file is larger than the configured maximum database size. This
setting takes effect on the first concurrent database connection only. [
Required Max Database Size (in MB; 0 if unknown) = 257 ]
How to increase database size?
Hej,
Suddenly, I get the following error when trying to modify my Umbraco sqlce database.
The database file is larger than the configured maximum database size. This setting takes effect on the first concurrent database connection only. [ Required Max Database Size (in MB; 0 if unknown) = 257 ]
How and where can I increase the database size?
Thanks for your help
Hi Anders,
hopefully the following stack overflow answer will help:
http://stackoverflow.com/questions/2408480/increase-the-size-of-sql-compact-3-5-sdf-file-using-c-sharp
Hope you get it sorted...
You need to locate the connection string and add: Max Database Size = 4096 (4GB), it works. Wait for 10 minutes.
web.config file
<add name="umbracoDbDSN" connectionString="Data Source=|DataDirectory|\Umbraco.sdf ; Max Database Size=4096"
providerName="System.Data.SqlServerCe.4.0" />
is working on a reply...