Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
The prior responses, especially VSarkiss's, are absolutely correct. You will want to verify this query from whatever commandline tools your RDBMS provides. A few thoughts on how to speed up a query:
  • Verify that you have indices on the columns you're searching on. Also, you will want to verify that the indices are being used. DBD::mysql, for example, passes all parameters in quoted, so they all look as if they are strings to MySQL. This means that comparisons to numeric columns will not use any indices, even if they are available.
  • Put your search conditions in a WHERE clause, very much like VSarkiss suggested in his update. This allows the RDBMS to optimize the query better.
  • Depending on the size of your tables and the size of the machine, some queries might just run slowly. If you're working with 1G tables and you have 256M of RAM, you're going to have issues.

Also, you might want to check the value of your webserver timeout. In Apache, the variable is called Timeout and is found in the httpd.conf. (I don't know about others, like IIS.) Some queries will simply take 1-2 minutes and if your timeout is set to 90 seconds (which isn't uncommon), you're going to have issues.

Being right, does not endow the right to be rude; politeness costs nothing.
Being unknowing, is not the same as being stupid.
Expressing a contrary opinion, whether to the individual or the group, is more often a sign of deeper thought than of cantankerous belligerence.
Do not mistake your goals as the only goals; your opinion as the only opinion; your confidence as correctness. Saying you know better is not the same as explaining you know better.


In reply to Re: Does DBI handle table alias? by dragonchild
in thread Does DBI handle table alias? by punch_card_don

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-24 20:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found