Performance Issues

Started by John Menkeover 25 years ago2 messagesgeneral
Jump to latest
#1John Menke
john@eagleinfosystems.com

I am in the design phase of a new database that contains one very long thin
table. Are there any peformance issues with index lookups to a table like
this if table becomes extremly long? Lets say hundreds of thousands to
millions of records... Remember, the table only has one column.

Another question. If the size of data in this record were to vary greatly,
would that have an impact on performance?

thanks for any replys....

#2Noname
M.Feldtmann@t-online.de
In reply to: John Menke (#1)
Re: Performance Issues

John Menke schrieb:

I am in the design phase of a new database that contains one very long
thin table. Are there any peformance issues with index lookups to a
table like this if table becomes extremly long? Lets say hundreds of
thousands to millions of records... Remember, the table only has one
column.

Another question. If the size of data in this record were to vary
greatly, would that have an impact on performance?

insert and updates times may grow linear if you've indices,
otherwise selects will be pretty stable.

Marten