473,386 Members | 1,803 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,386 software developers and data experts.

What hardware to get?

We are upgrading our SQL Server hardware because we need more CPU
power. The current server is a P4 3.2 GHz with HT.

The system we have been looking at is a dual Opteron, and the questions
is: will two Opteron 244 (1.8GHz) give considerably more CPU power than
a single P4 3.2 GHz? Or would we need to get two Opteron 250 (2.4 GHz)
to really get a notable increase in CPU power?

The plan is to get single core Operons first and then plug in two dual
core opterons later on if needed when they are available and maybe a
little bit cheaper.

-Jack

Jul 23 '05 #1
4 1137
(gr**********@gmail.com) writes:
We are upgrading our SQL Server hardware because we need more CPU
power. The current server is a P4 3.2 GHz with HT.

The system we have been looking at is a dual Opteron, and the questions
is: will two Opteron 244 (1.8GHz) give considerably more CPU power than
a single P4 3.2 GHz? Or would we need to get two Opteron 250 (2.4 GHz)
to really get a notable increase in CPU power?

The plan is to get single core Operons first and then plug in two dual
core opterons later on if needed when they are available and maybe a
little bit cheaper.


Opteron is a 64-bit processor, isn't it? I believe that currently the
only 64-bit processor which there is a 64-bit version of SQL Server
is Itanium.

And while you can run 32-bit software on 64-bit hardware, this is not
a very good idea if it's performance you are looking for.
--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se

Books Online for SQL Server SP3 at
http://www.microsoft.com/sql/techinf...2000/books.asp
Jul 23 '05 #2

"Erland Sommarskog" <es****@sommarskog.se> wrote in message
news:Xn**********************@127.0.0.1...
(gr**********@gmail.com) writes:
We are upgrading our SQL Server hardware because we need more CPU
power. The current server is a P4 3.2 GHz with HT.

The system we have been looking at is a dual Opteron, and the questions
is: will two Opteron 244 (1.8GHz) give considerably more CPU power than
a single P4 3.2 GHz? Or would we need to get two Opteron 250 (2.4 GHz)
to really get a notable increase in CPU power?

The plan is to get single core Operons first and then plug in two dual
core opterons later on if needed when they are available and maybe a
little bit cheaper.
Opteron is a 64-bit processor, isn't it? I believe that currently the
only 64-bit processor which there is a 64-bit version of SQL Server
is Itanium.

And while you can run 32-bit software on 64-bit hardware, this is not
a very good idea if it's performance you are looking for.


Actually, with the Opteron design, I don't believe there's any loss in
performance, unlike the Itanium.

Having said that, my first real question would be:

Are you (the original poster :-) absolutely sure you need more CPU power? I
find memory and I/O tend to be the first physical bottleneck.

But often poor programming (such as cursors) tends to dominate.

Also, rather than just raw CPU power, I'd look at on-board cache. Which
ones have the largest L2 cache? I find that a doubling in cache can make
for dramatic improvements in performance.


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

Books Online for SQL Server SP3 at
http://www.microsoft.com/sql/techinf...2000/books.asp

Jul 23 '05 #3
Hi,

Greg:
Thanks for the feedback. I did find the reason for the high cpu load.
It was in fact a poorly written query. Instead of using a simple IF
EXISTS to check if a table was empty it used a COUNT () > 1. It slipped
passed me at first and it only takes 2 seconds to run, but the query
was run 12,000 times a day so it added up. Thanks for the L2 tip.

Erland: Opteron can run 64 bit code (as Windows 2003 64), but it also
runs 32 bit code without penalty.

Thanks!

-Jack

Jul 23 '05 #4

"SQLJack" <gr**********@gmail.com> wrote in message
news:11*********************@o13g2000cwo.googlegro ups.com...
Hi,

Greg:
Thanks for the feedback. I did find the reason for the high cpu load.
It was in fact a poorly written query. Instead of using a simple IF
EXISTS to check if a table was empty it used a COUNT () > 1. It slipped
passed me at first and it only takes 2 seconds to run, but the query
was run 12,000 times a day so it added up. Thanks for the L2 tip.
Yeah. Queries like that "add up" quickly.


Erland: Opteron can run 64 bit code (as Windows 2003 64), but it also
runs 32 bit code without penalty.

Thanks!

-Jack

Jul 23 '05 #5

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

Similar topics

137
by: Philippe C. Martin | last post by:
I apologize in advance for launching this post but I might get enlightment somehow (PS: I am _very_ agnostic ;-). - 1) I do not consider my intelligence/education above average - 2) I am very...
125
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from...
96
by: BadPony | last post by:
Anyone using Peoplesoft on a Federated UDB (shared nothing)Environment on Open System Platforms? Preferably AIX, but any war stories would be good. TEA EB-C
24
by: Hardy | last post by:
I'm pretty new in this field. when reading some 70x material, I met with this term but cannot catch its accurate meaning. who can help me? thanks in advance:)~
3
by: Spencer | last post by:
One of the things that I have become interested in lately is questioning in general what percentage of DB2 UDB implementations are configured to run at least near optimally given the hardware...
51
by: jacob navia | last post by:
I would like to add at the beginning of the C tutorial I am writing a short blurb about what "types" are. I came up with the following text. Please can you comment? Did I miss something? Is...
58
by: Larry David | last post by:
Ok, first of all, let's get the obvious stuff out of the way. I'm an idiot. So please indulge me for a moment. Consider it an act of "community service".... What does "64bit" mean to your friendly...
110
by: alf | last post by:
Hi, is it possible that due to OS crash or mysql itself crash or some e.g. SCSI failure to lose all the data stored in the table (let's say million of 1KB rows). In other words what is the worst...
0
by: edu1982edu | last post by:
MSDN on GetCurrentHwProfile: Remarks The GetCurrentHwProfile function retrieves the display name and globally unique identifier (GUID) string for the hardware profile. The function also retrieves...
33
by: James H. Newman | last post by:
I have a portion of code along the following lines: volatile unsigned char x ; unsigned int f(unsigned char *y) ; When I do unsigned int z = f(&x) ;
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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...

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.