If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > How many row entries before a table gets slow?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-24-08, 06:03
martingavin21 martingavin21 is offline
Registered User
 
Join Date: Oct 2008
Posts: 12
How many row entries before a table gets slow?

If I have a table with nine fields, 7 are int and 2 are datetime, how many rows is it likely to handle before it starts to slow up a bit?

Just curios to what different peoples opinions might be?
Reply With Quote
  #2 (permalink)  
Old 10-24-08, 06:39
gvee gvee is offline
www.gvee.co.uk
 
Join Date: Jan 2007
Location: UK
Posts: 10,156
Tables don't get slow...

Queries that retrieve the data are the things that take time.
__________________
George
Twitter | Blog
Reply With Quote
  #3 (permalink)  
Old 10-24-08, 06:44
martingavin21 martingavin21 is offline
Registered User
 
Join Date: Oct 2008
Posts: 12
So if for example there are 800,000 (or more) rows in a table and I have a query that is pulling back the values of 3 or 4 rows based on a specific where clause would it still be as quick if there were only 1,000 rows?
Reply With Quote
  #4 (permalink)  
Old 10-24-08, 07:12
healdem healdem is offline
Jaded Developer
 
Join Date: Nov 2004
Location: out on a limb
Posts: 9,250
if the query is making use of indexes to restrict the rows returned yes, if it requires a table scan no (ie it has to search through every row to find the data)....
__________________
I'd rather be riding my Versys or my Tiger 800 let alone the Norton
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On