c# - SQL LocalDB Size Limit for Non-Express Editions -


i have complex generator , using localdb store temporary results. problem once *.mdf file reaches 10.5 gb, exception regarding "primary" filegroup cannot expand.

  • i did install sql server enterprise 2014, though not know if localdb affected this.
  • in management studio did set file auto-growth unlimited.

i know there 10 gb database size limit, isn`t express edition? wondering if there way make localdb bigger, adding more files primary group help? (i not think so).

converse, if not possible, can please recommend free local-nosql database use c#?

thank you!

there no localdb edition of sql server outside of sql server express localdb, limited 10gb.

see https://msdn.microsoft.com/en-us/library/ms144275.aspx

one alternative sqlite, should able go 140 tb, self-contained, serverless, , has .net library, it's not nosql, if that's you're looking for. (but then, why localdb?)


Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -