![]() |
Alexey admin 9/14/2007 |
Hi, |
D
|
darkstorm author 9/14/2007 |
Hi, 90k records is not too big for MySQL. Please clarify what kind of speed issues you experiencing, when and where. And I'll try to help you.
|
R
|
rafamarquez 9/14/2007 |
My sugestion is ( In the Edit SQL Query Page ) Mark the option ( No records on the first page ) it will force the user to do a search |
D
|
darkstorm author 9/14/2007 |
Hello Hugo, and thank you for your input. |
R
|
rafamarquez 9/14/2007 |
In my case I have a Dual Xeon 3.2 - 2GB RAM - 4 discs SATA 7200RPM 16MB cache |
R
|
rafamarquez 9/14/2007 |
I think do you have to tunning the MYSQL to consume more RAM whit MYSQL Administrator download it from www.mysql.com. do you have to considere the amount of RAM do you actually have and the type of DB MYISAM or InnoDB. |
R
|
rafamarquez 9/14/2007 |
Reeding one more time your Post, I think! Do you have indexes in you tables?? because it seems to be a FULL TABLE SCAN, because do you made a search and no speed up. Do you have to build Indexes for every column where do you wil make a search. |
![]() |
Alexey admin 9/14/2007 |
Balanel, |
D
|
darkstorm author 9/14/2007 |
Thank you all for replying. |
A
|
alang 9/16/2007 |
I have a similar situation where one of the tables is around 150,000 records. I found the following article was quite useful in regard to indexes etc. ( http://www.databasejournal.com/features/my...cle.php/1382791 )
|
![]() |
Alexey admin 9/17/2007 |
Balanel, |
D
|
darkstorm author 10/2/2007 |
Hello again, The other thing I do is tunning the PostgreSQL to put de Indexes and Querys in cache (MEMORY RAM)
|
A
|
acpan 10/5/2007 |
mysql> EXPLAIN select from _clienti where oras = 'brasov' and situatii = 'nu a fost contactat'; |
A
|
acpan 10/5/2007 |
Just to add: |
D
|
darkstorm author 10/6/2007 |
I have managed to tweak the indexes a little bit and now it shows some improvement |
A
|
acpan 10/6/2007 |
Glad to hear that and notice your key length is now shortened from 106 to 18. |