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 > View performance issues

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-01-07, 13:04
tjones1105 tjones1105 is offline
Registered User
 
Join Date: Dec 2007
Posts: 21
View performance issues

Hello,
So I have converted a database from MSSQL to MySQL and for the most part it's all good. The big issue I'm having is with the performance with using views in MySQL(5.0.45). The query I run in MSSQL returns in 1 second and in MySQL it takes 1 and a half hours. Now I did not expect it to be as fast a MSSQL but not that slow.

Any suggestions?

Thanks,
tom
Reply With Quote
  #2 (permalink)  
Old 12-01-07, 13:57
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,534
have you analyzed the index usage?

do an EXPLAIN on the query and see if you can find anything like "filesort"
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
  #3 (permalink)  
Old 12-01-07, 14:47
tjones1105 tjones1105 is offline
Registered User
 
Join Date: Dec 2007
Posts: 21
Yes, I do see a filesort.
Reply With Quote
  #4 (permalink)  
Old 12-01-07, 17:12
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,534
did you declare any indexes on the table?

mysql is nice because scripting a table is ~way~ easier than in microsoft sql server

do a SHOW CREATE TABLE tablename for each table involved in the query -- it will show you the indexes on the table
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
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