all groups > sql server msde > march 2005 >
You're in the

sql server msde

group:

MSDE limits?



MSDE limits? Richard Bibby
3/26/2005 9:23:12 AM
sql server msde: Hej,

Is there a physical limit to how many simultaneous users MSDE can have. I
have read 25... and i have heard 10... what are the limits?

/Richard

Re: MSDE limits? Lars Broberg
3/26/2005 11:10:38 AM
Richard,

Well, there are no fixed limit. The governor will slow down when over 8
concurrent (active) connections. I think SQL Server use 3 itself,
leaving 5 for "your" use. These can handle a lot of users, depending on
how "busy" they are... If you have an app where every user is hitting
the database "all the time" with heavy worklooads, then you are "safe"
with 5 users and probabaly 10 will "work". If your app is using the
server less frequently, 25 users is certainly possible.
So the answer is: It depends... (on your app and your users)

Lars Broberg
Elbe-Data AB
http://www.elbe-data.se
Remove "nothing." when replying to private e-mail!


[quoted text, click to view]
Re: MSDE limits? Richard Bibby
3/26/2005 12:40:03 PM
ok.. what about database size?


"Lars Broberg" <lars.b@elbe-data.nothing.se> skrev i meddelandet
news:u4hwQweMFHA.1476@TK2MSFTNGP09.phx.gbl...
[quoted text, click to view]

Re: MSDE limits? Lars Broberg
3/26/2005 1:23:50 PM
2 GB is max for MSDE.
Lars Broberg
Elbe-Data AB
http://www.elbe-data.se
Remove "nothing." when replying to private e-mail!


[quoted text, click to view]
Re: MSDE limits? Greg Low [MVP]
3/27/2005 9:16:08 PM
The limit is not based upon concurrent connections. It is based upon
concurrent "workloads". There is a big difference. When the system needs to
execute more than 8 concurrent query plans, it inserts a delay in each
logical page access. For small queries, this can have a minor effect. For
larger table scans, this can have a large effect. Use DBCC
CONCURRENCYVIOLATION to investigate if any delays have been inserted and how
often. We have regularly seen more than 20 winform users happy with a single
instance of the MSDE. The 2G database size limit seems to impact most people
before the query governor does.

HTH,

--
Greg Low [MVP]
MSDE Manager SQL Tools
www.whitebearconsulting.com

[quoted text, click to view]

Re: MSDE limits? YYZ
3/29/2005 8:42:35 AM
[quoted text, click to view]

So you are saying that MSDE inserts artificial delays just for the purpose
of slowing itself down because it is not the full version of SQL Server?

I'm just wondering. I had always heard that the only differences were the 2
GB limit and 5 connections...but that more connections were allowed, it
would just wait before letting them do anything until a spot opened up.

Then again, I don't know what I'm talking about. :)

Is there an easy way to tell if I am going to use more than 8 concurrent
query plans?

Matt

Re: MSDE limits? YYZ
3/29/2005 1:22:38 PM
[quoted text, click to view]

That's all I was looking for. Thanks!

[quoted text, click to view]

Thanks for the link. That will help tremendously, I think.

Matt

Re: MSDE limits? Andrea Montanari
3/29/2005 5:45:34 PM
hi,
[quoted text, click to view]

loosely speaking, yes :)

[quoted text, click to view]

up to 32767 connections are theoretical valid for MSDE too, but you'll go
out of resources long before that

[quoted text, click to view]

it's not about query plans, but, again, concurrent workloads.. please have a
look at
http://msdn.microsoft.com/library/?url=/library/en-us/architec/8_ar_sa2_0ciq.asp?frame=true
--
Andrea Montanari (Microsoft MVP - SQL Server)
http://www.asql.biz/DbaMgr.shtm http://italy.mvps.org
DbaMgr2k ver 0.11.1 - DbaMgr ver 0.57.0
(my vb6+sql-dmo little try to provide MS MSDE 1.0 and MSDE 2000 a visual
interface)
--------- remove DMO to reply

Re: MSDE limits? 2005 ??? scott
4/5/2005 12:50:06 PM
excellent thread, I have learnt more about MSDE 2000 in this conversation
than a week of research.

Could I trouble you to answer the same question for MSDE 2005 (or SQL 2005
Express edition i think they are calling it) i.e what limits does it have ?

Thanks for your time.
Scott

Re: MSDE limits? 2005 ??? scott
4/5/2005 1:24:52 PM
ie

RUNS ON:
-2003
-2000
-XP

LIMITS ARE:
- NO DTS
- 1CPU
- 4 GB data
- 1 GB Ram
- No workload throttle (i think this means that its unlimited unlike MSDE
2000 "8" workload processing restriction)

cheers
scott

Re: MSDE limits? 2005 ??? scott
4/5/2005 3:46:51 PM
thanks for reply.

- is there a release date for Express 2005 yet ?
- "it can't be a merge replication publisher" what is this function actually
for ?
- what is the "subscriber" function for ?
- what does the "SQL Agent" do ? (i.e send emails etc....)

sorry for all the questions - would clear a few things up for me though.
Scott

Re: MSDE limits? 2005 ??? Greg Low [MVP]
4/5/2005 11:34:54 PM
Yes to all in the list plus it can't be a merge replication publisher, but
it can be a subscriber. And there's no SQL Agent.

HTH,

--
Greg Low [MVP]
MSDE Manager SQL Tools
www.whitebearconsulting.com

[quoted text, click to view]

Re: MSDE limits? 2005 ??? Greg Low [MVP]
4/6/2005 10:50:24 PM
Hi Scott,

Comments inline:

HTH,

--
Greg Low [MVP]
MSDE Manager SQL Tools
www.whitebearconsulting.com

[quoted text, click to view]
GREG> No, it'll likely be with SQL Server 2005 in the last few months of
this year.

[quoted text, click to view]
GREG> Merge replication allows you to have the same table able to be updated
on different MSDE servers at the same time. The servers can be temporarily
disconnected if necessary and they resync when reconnected. There is
conflict resolution. One server is used to define the tables to be
"published".

[quoted text, click to view]
GREG> The other server(s) that can also use the table.

[quoted text, click to view]
GREG> Understands jobs, tasks, operators (Agent's own concept not server
logins or database users), schedules and alert processing.

[quoted text, click to view]
GREG> No problems - ask away

Re: MSDE limits? 2005 ??? scott
4/12/2005 11:58:09 AM
got back today and saw your response, just wanted to post a quick thank you.

Cheers
Scott

AddThis Social Bookmark Button