vote up 1 vote down star

With SQL Express (either 2005 or 2008 edition) there is a limit of 1GB memory and 1 CPU that can be used. What I'm wondering, is if two instances are installed on the same machine, would they use the same CPU and same 1GB of memory? Or, would they use potentially two different CPU's and 2GB memory?

flag

2 Answers

vote up 3 vote down check

The limitations are per-instance. Each instance is limited to its own 1 CPU and 1GB RAM.

You can have up to 16 instances of SQL Server Express Edition on a system.

Also in MSDE, the predecessor to SQL Server Express, the limitations were per-instance.

link|flag
Thanks. Do you know this 100% for sure? – JD Conley Jan 5 '09 at 21:35
I'm pretty sure of it. This was the case for MSDE and I believe the limitations are per-instance. In fact, it's only logical. How would an instance know about the other's memory usage at any time!? Assume they are running on two different accounts without permission to access each other. – Mehrdad Afshari Jan 5 '09 at 21:59
vote up 0 vote down

I can't speak for sure, but most likely they would be able to use separate CPUs and memory. It would be pretty tricky for them to coordinate to share memory like that. My suspicion is that each instance will run the same irrespective of other instances being present (at least in the respect you're talking about).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.