How do you optimize SQL queries ?
Answer Posted / rupa
Most often, Databases have bad designs and are not
normalized. This can greatly affect the speed of your
Database. As a general case, learn the 3 Normal Forms and
apply them at all times. The normal forms above 3rd Normal
Form are often called de-normalization forms but what this
really means is that they break some rules to make the
Database faster.
What I suggest is to stick to the 3rd normal form except if
you are a DBA (which means you know subsequent forms and
know what you're doing). Normalization after the 3rd NF is
often done at a later time, not during design.
for more information go Through below link
http://www.serverwatch.com/tutorials/article.php/2175621
| Is This Answer Correct ? | 3 Yes | 10 No |
Post New Answer View All Answers
What does where 1/2 mean in sql?
How do you exit in sql?
how do you tune the slow running queries in oracle db , explain the methodology
What are the string functions in sql?
What is the command used to fetch first 5 characters of the string?
What is recursive join in sql?
What is loop in pl sql?
How do you update f as m and m as f from the below table testtable?
What is inner join in sql?
What is replication id?
Can %notfound return null after a fetch?
Why function is used in sql?
What does where 1 1 mean in sql?
How is debugging done?
What does (*) mean in sql?