473,395 Members | 1,639 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

SQL Server 200 Developer vs Enterprise versions

I am having some problems in the process of moving an Access back-end
to an SQL Server back-end. Everything works but there are severe
problems of response times when the number of users builds up.

At present we are using the Developer version before committing to the
Enterprise version. BOL (quoted below) seems to suggest that, apart
from licensing, they are the same.

Can anyone please confirm that this is so. If not, what is the
difference?

I may explain in another topic the problems I am facing but I first
wish to be clear on this particular question.

---------------------------------------------------------------------------------------------------------------
Quote from BOL

Microsoft® SQL Server™ 2000 is available in these editions:

SQL Server 2000 Enterprise Edition
Used as a production database server. Supports all features available
in SQL Server 2000, and scales to the performance levels required to
support the largest Web sites and enterprise online transaction
processing (OLTP) and data warehousing systems.

SQL Server 2000 Developer Edition
Used by programmers developing applications that use SQL Server 2000 as
their data store. Although the Developer Edition supports all the
features of the Enterprise Edition that allow developers to write and
test applications that can use the features, the Developer Edition is
licensed for use only as a development and test system, not a
production server.

Aug 11 '06 #1
5 12907
On 11 Aug 2006 12:25:19 -0700, "Jim Devenish"
<in***************@foobox.comwrote:
>I am having some problems in the process of moving an Access back-end
to an SQL Server back-end. Everything works but there are severe
problems of response times when the number of users builds up.

At present we are using the Developer version before committing to the
Enterprise version. BOL (quoted below) seems to suggest that, apart
from licensing, they are the same.

Can anyone please confirm that this is so. If not, what is the
difference?
I believe that's correct.

What do your RAM, HD, CPU, and network bandwidth look like?

You have to do some non-obvious tweaks to let SQL Server use more than
2 GB of RAM.
Aug 11 '06 #2
Jim Devenish (in***************@foobox.com) writes:
I am having some problems in the process of moving an Access back-end
to an SQL Server back-end. Everything works but there are severe
problems of response times when the number of users builds up.

At present we are using the Developer version before committing to the
Enterprise version. BOL (quoted below) seems to suggest that, apart
from licensing, they are the same.

Can anyone please confirm that this is so. If not, what is the
difference?
The difference is exactly in the license. And when you mention users
building up, I get a little vervous that you are violating it...

--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pro...ads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinf...ons/books.mspx
Aug 11 '06 #3
We are trying to evaluate the use of SQL Server as a back-end and
although the system works with a very small number of users we are
encountering difficulties when the number rises to about 8-10. If we
cannot overcome these we will revert to Access back-end.

If we are successful, the licenses will be acquired for Enterprise
edition. There is no intention of violating licences. We do however
wish to test the system fully before advancing.

As I said in my original post, I am happy to explore the problem in
another post. I just wanted to eliminate the possibility that the use
of the Developer version was contributing to the problem.
Erland Sommarskog wrote:
Jim Devenish (in***************@foobox.com) writes:
I am having some problems in the process of moving an Access back-end
to an SQL Server back-end. Everything works but there are severe
problems of response times when the number of users builds up.

At present we are using the Developer version before committing to the
Enterprise version. BOL (quoted below) seems to suggest that, apart
from licensing, they are the same.

Can anyone please confirm that this is so. If not, what is the
difference?

The difference is exactly in the license. And when you mention users
building up, I get a little vervous that you are violating it...

--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pro...ads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinf...ons/books.mspx
Aug 11 '06 #4
Jim Devenish wrote:
We are trying to evaluate the use of SQL Server as a back-end and
although the system works with a very small number of users we are
encountering difficulties when the number rises to about 8-10. If we
cannot overcome these we will revert to Access back-end.

If we are successful, the licenses will be acquired for Enterprise
edition. There is no intention of violating licences. We do however
wish to test the system fully before advancing.

As I said in my original post, I am happy to explore the problem in
another post. I just wanted to eliminate the possibility that the use
of the Developer version was contributing to the problem.
SQL Server can easily handle thousands of simultaneous users. But it's
equally true that poor design and implementation can kill performance
even in a small database with a handful of users.

Did you review and redesign the logical and physical data model when
you ported to SQL Server? Did you rewrite your data access code to run
as server-side T-SQL stored procedures? If you did not do those things
or if you are still binding tables to Access forms then you are not
taking good advantage of SQL Server and N-tier architecture. Do not
expect SQL Server to be a supercharged version of Jet - it just isn't.

Assuming you have put in the effort to re-architect for SQL Server then
take a look at the following article for suggestions on troubleshooting
performance issues. These are primarily tuning and troubleshooting
suggestions. They are not a substitute for effective design up-front.

http://support.microsoft.com/?id=298475

--
David Portas, SQL Server MVP

Whenever possible please post enough code to reproduce your problem.
Including CREATE TABLE and INSERT statements usually helps.
State what version of SQL Server you are using and specify the content
of any error messages.

SQL Server Books Online:
http://msdn2.microsoft.com/library/m...S,SQL.90).aspx
--

Aug 12 '06 #5
Jim Devenish (in***************@foobox.com) writes:
We are trying to evaluate the use of SQL Server as a back-end and
although the system works with a very small number of users we are
encountering difficulties when the number rises to about 8-10. If we
cannot overcome these we will revert to Access back-end.
Certainly one woujld expect SQL Server be a lot better on handling many
users than Access. But with poor indexing etc, you can make things to
really slow on SQL Server as well. And if you just migrated the Access
database with the up-sizing wizard, you most likely have a non-optimal
database.
If we are successful, the licenses will be acquired for Enterprise
edition. There is no intention of violating licences. We do however
wish to test the system fully before advancing.
When I think of it, moving from Access to Enterprise for a back-end is
quite a step, not the leasr financially. Are there any special feature
in Enterprise you are yearning for? Else, Standard or even Workgroup
Edition may work just as well.

For evaluation purposes, you should probably use Evaluation Edition, but
I'm not the license police. :-)

By the way, your post says SQL 200, I suppose that means SQL 2000. Why
not SQL 2005?

--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se

Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pro...ads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinf...ons/books.mspx
Aug 12 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Jason | last post by:
Hello All, two quick questions ok what is the major difference between .net Pro and .net Enterprise Developer Version 2003 (other than cost)? And I am looking to upgrade from MSVS v6.0 Pro to a...
6
by: Martin Meyer im Hagen | last post by:
Hello, I've got installed Win 2003 SBS Premium with the SQL Server 2000 on a server machine. It works almost fine, except the application which uses the SQL Server. The main part of the...
0
by: Zorba.GR | last post by:
IBM DB2 Connect Enterprise Edition v8.2, other IBM DB2 (32 bit, 64 bit) (MULTiOS, Windows, Linux, Solaris), IBM iSoft Commerce Suite Server Enterprise v3.2.01, IBM Tivoli Storage Resource Manager...
32
by: dreadnought8 | last post by:
I have a client who wishes to upsize an A97 system from Jet backend to SQL Server 2000. They have up to 4 users. Will they need to buy the minimal 5-seat SQL Server product, or would it be...
3
by: Mark | last post by:
Anyone know of a list of features lacking in Web Developer 2005 Express that are already in VS.NET 2003? I realize they take a slightly different approach due to the new ASP.NET 2.0, but I'm...
22
by: EP | last post by:
When running my asp.net hosting service (asp.net without IIS), on server 2003 with IIS not installed, I get the following when trying to process a request. "System.DllNotFoundException: Unable to...
0
by: tommie.nygren | last post by:
I am using Visual Studio.NET 2003 Enterprise Architect Edition (according to my IT guy... how do I actually check what version of it I am using?) and SQL Server Developer Edition (8.00.194 for you...
14
by: Developer | last post by:
Hello All, i have recently installed VS2005 and was trying to install SQL sever 2000. I have Win XP' SP2. But when I tried installing, it only installed client tools and not the database. Can...
14
by: Guillermo_Lopez | last post by:
Hello, Our company has developed several Access applications for our clients and we wish to expand to use a database server. We wish to use Access as the front end application and SQL Server...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.