hardware requirements of database management system

jay75

Member
Jun 1, 2003
111
0
0
what are the special requirements of a database management system, in terms of hardware. there is an emphasis on great speed but each record will not be very large, say 100 bytes. throughput could vary drastically. for example which is more important fsb width or memory speed? raid would obviously definitely be needed.

thx, Jaysin.
 

CTho9305

Elite Member
Jul 26, 2000
9,214
1
81
To be honest, if you have to ask those questions, you'll probably be fine with any old PC.
 

Mark R

Diamond Member
Oct 9, 1999
8,513
16
81
It depends on the database, and what it is used for.

If it's the back end for small website, or small business general orders/works database, then it really doesn't matter. Careful database design, use of appropriate indexes, use of stored procedures wherever possible, use of denormalization where appropriate, careful writing of SQL queries (e.g. DISTINCT queries may be very slow, and use of subqueries may provide the same result more quickly), etc. can all boost database performance greatly.

Unless you are working with millions of rows, or thousands of database updates per minute, pretty much any decent PC with plenty of RAM will do the job perfectly adequately.

For very big, or very busy databases, the optimal hardware may need to be determined by performance profiling.