I'm planning to use SQL CE 4.0 in a small but production web site and I'd like to know how much load SQL CE 4.0 can handle:
- Number simultaneous connections,
- Number of rows per table, and
- The total DB size.
|
I'm planning to use SQL CE 4.0 in a small but production web site and I'd like to know how much load SQL CE 4.0 can handle:
|
|||||
|
|
Something that might be useful to you is Scott Guthrie's blog post on Wednesday 12 Jan 2011 regarding the latest version of SQL CE and its VS2010 integration: VS 2010 SP1 and SQL CE To cherry pick a couple of quotes:
Personally I would consider that a 4GB & 256 simultaneous connections in-memory database on a webserver is starting to get a bit big, even though that is the limit for SQL CE, I would look to migrate well before then. It is aimed more at certain scenarios, and if your app doesn't fit that scenario then you should consider SQL Express as Leppie mentioned; i.e. if you can install SQL Express either on your web server or on a machine accessible from your web server then you should do so. Edit: |
|||||||||
|
|
These are the limits for SQL CE 3.5 : http://msdn.microsoft.com/en-us/library/ms172451.aspx. I couldn't find anything about the limits in SQL CE 4.0, but for what you ask, in 3.5 :
My guess is it will more or less be the same. |
|||
|
|
According to this page: http://social.msdn.microsoft.com/Forums/en/sqlce/thread/7657710c-a27d-4702-8155-e6886957465a SQL Server Compact 4.0 is limited to 4 GB. |
|||
|
|
|
I only know about 3.5 , One issue I found was that COUNT_BIG isn't supported, therefore, using COUNT, which returns an Int, you cant count over 2,147,483,647 records in such a query. Also no full-text search. |
|||
|
|