Click here to Skip to main content
15,887,083 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I need to know when, how and why to use indexing for performance tuning? Can anyone provide a good example to learn about indexing, how, when and why to use indexing?
Posted

As you may already aware, indexing will improve the performance when used properly and not possible to explain everything here.

If you feel, your query is slow (taking more time to give the result) then you may have to look at the executioin plan which will give you and indication where the bottle neck is. The execution plan can be enabled by pressing "CTRL +M" prior to the query execution and once the query is executeted you will see an another tab on the result pannel ( there will be three pannels namly results,message,execution plan) and at times the execution plan will suggest an SQL INDEXING script for fine tuning the query - please do this on a test dataase

I would recommand you to do some googling on this and read some tutorials / ariticles on this to understanding the indexing and the best way forward
 
Share this answer
 
I suggest you start researching here[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900