vote up 0 vote down star
1

Assertion: the performance of SQL databases degrades when the volume of data becomes very large (say, tens or hunderds of terabytes). This means certain patterns in database design which are reasonable for most small-to-medium sized databases break down when the database grows. For (a rather general) example, there is a trend that moves away from designing data models which are fully (or say, BCNF) normalized because the joins necessary would impact performance too heavily. See also this question

My question is this: Do you know of any database patterns which, although reasonable in a typical database, break down (performance-wise) for huuuge databases, particularly SELECT-queries? Are there alternative strategies that accomplish the same (data-wise) without these performance issues?

flag

43% accept rate

1 Answer

vote up 0 vote down

Identity columns?!

This can happen with a HUGE table containing lots of data and heavy insert/delete transactions.

EDIT: OK. Re-read your question. Indexes can be huge performance bottlenecks for inserts in tables containing lot many rows.

link|flag
Thanks! I was mostly looking for things that impact query (select) performance, though. Clarified this in the question. – Rik May 1 at 14:29

Your Answer

Get an OpenID
or

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