How to make database sql query run faster?
-
-
Answer:
Normalize the database by splitting them into smaller tables.
urrajesh... at Yahoo! Answers Visit the source
Other answers
1>split into different tables 2>make index 3>use stored procedure and trigger on the database
mitoshi
Most databases will have some type of EXPLAIN PLAN function. This function will run your SQL and map out the steps the SQL takes to read each table in the query and identify how each is parsed (full scan, indexed scan etc) and what order they are read. This let's you improve the performance of the SQL by identifying a better way to write your SQL (different table order, different join criteria) or improvements to the table indexing. You can also get third party products that analyse and improve SQL. Have a look at Quest Software as an example.
vmac
First you must have the system speed higher and then your server executing the sql commands must be loaded with less traffic. Second eventually your database must be split in many tables using smaller no. of tables at a time. :)
aru.mugam
lots of ways !!! ..index relevant columns ..refresh indexes, if out of date ..re-look at your query depends on what is ur database and on the funny side... remove some data...that will definitely speed up queries.. no data shud give u the fastest ..
bio_guy
Related Q & A:
- How to convert my SQL query to MS Access query?Best solution by Stack Overflow
- How to convert a SQL query into hibernate criteria?Best solution by Stack Overflow
- How to make a MySql query faster?Best solution by Stack Overflow
- How do I make games run faster on my PC for free?Best solution by techradar.com
- How to make GTA 4 run faster on my pc?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.