Protected by Copyscape Web Copyright Protection Software

Pages

Search This Blog

Sunday, May 26, 2013

Performance tuning Steps

Hi viewers To increase the performance of any query please keep in mind the following points.

Steps to Tune the Query :
---------------------------------
1.Make sure the proper joins for whatever tables in from clause.
2.Make the joins with "ID's" instead of Database columns.
3.Avoid Multi table views, Use Org Specific views where ever possible.
4.If the custom table is having large amount of create indexes.
5.Avoid Type casting and Aggregate functions,Negation operators
   on Indexed columns.
6.Instead of using the whole query in a single cursor or group ,
   split into multiple   Groups and link them.
7. use union all instead of Union
8. Use Exists in place of in
9. Avoid usage of Negation operators like NOT, !=.
10.Use Union instead of OR Clause.
11.Avoid Usage of outer joins , use Equi joins where ever possible
12.Use Where Clause instead of Having Clause.

No comments:

Post a Comment