Results 1 to 2 of 2

Thread: Execution of queries

  1. #1
    Join Date
    Jul 2005
    Posts
    24

    Execution of queries

    hi,
    I want to know, how can we decrease the execution time of sql queries?

    Please help me

  2. #2
    Join Date
    Mar 2003
    Posts
    468
    don't know what db you are using but the methodology is to find where a query is spending its time (disk reads, sorts, memory access, ...something else) and then tune that part for the query. this is often accomplished by tracing the sql or running it through an explain plan analysis.

    answers could be hardware reconfiguration, sql rewrite, adding indexes, redesign tables...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •