Exporting MySQL Data - timeout help

This is a discussion on Exporting MySQL Data - timeout help within the PHP Language forums, part of the PHP Programming Forums category; Hey All, I'm having a little problem with exporting data from my database. The problem is that the query ...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-24-2008
cmgmyr
 
Posts: n/a
Default Exporting MySQL Data - timeout help

Hey All,
I'm having a little problem with exporting data from my database. The
problem is that the query seems to be too much for PHP and MySQL to
handle since it is timing out. I have the timeout set right now at 3
minutes. I can run this in phpMyAdmin and it usually takes 4-5 minuted
to complete. I do not want to have to make the client wait that long
for this. This is part of an import/export Excel function that I have
made. Here is the query:

SELECT p.id, p.base_no, p.style_no, t1.name AS category1, t2.name as
category2, t3.name as category3, p.metal, p.description, c.name as
collection, p.price, pe.b2c_desc, pe.meta_title, pe.meta_desc,
pe.meta_keys, pe.alt_tag, p.site
FROM
categories AS t1
LEFT JOIN
categories AS t2 ON t2.parentid = t1.id
LEFT JOIN
categories AS t3 ON t3.parentid = t2.id
INNER JOIN
products AS p ON t3.id = p.categories_id
LEFT JOIN
collections AS c ON p.collection = c.id
LEFT JOIN
products_extended AS pe ON p.style_no = pe.style_no

The categories table is a hierarchical setup (id, parentid, name). Do
you guys have any ideas about how to make this function better? Any
other solutions??? How do you export data from your databases like
this?

Thanks in advance,
-Chris
Reply With Quote
  #2 (permalink)  
Old 04-24-2008
Rik Wasmus
 
Posts: n/a
Default Re: Exporting MySQL Data - timeout help

cmgmyr wrote:
> Hey All,
> I'm having a little problem with exporting data from my database. The
> problem is that the query seems to be too much for PHP and MySQL to
> handle since it is timing out. I have the timeout set right now at 3
> minutes. I can run this in phpMyAdmin and it usually takes 4-5 minuted
> to complete. I do not want to have to make the client wait that long
> for this. This is part of an import/export Excel function that I have
> made. Here is the query:
>
> SELECT p.id, p.base_no, p.style_no, t1.name AS category1, t2.name as
> category2, t3.name as category3, p.metal, p.description, c.name as
> collection, p.price, pe.b2c_desc, pe.meta_title, pe.meta_desc,
> pe.meta_keys, pe.alt_tag, p.site
> FROM
> categories AS t1
> LEFT JOIN
> categories AS t2 ON t2.parentid = t1.id
> LEFT JOIN
> categories AS t3 ON t3.parentid = t2.id
> INNER JOIN
> products AS p ON t3.id = p.categories_id
> LEFT JOIN
> collections AS c ON p.collection = c.id
> LEFT JOIN
> products_extended AS pe ON p.style_no = pe.style_no
>
> The categories table is a hierarchical setup (id, parentid, name). Do
> you guys have any ideas about how to make this function better? Any
> other solutions??? How do you export data from your databases like
> this?


If your query takes that long, do an EXPLAIN on it, and ask the good
people at comp.databases,mysql why this takes so long.

f'up comp.databases.mysql
--
Rik Wasmus
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 Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 09:50 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0