Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have tried to implement a feature of indexes to improve performance but after adding these indexes to column i don't seem to be getting any difference in speed
here is what i have done...

CREATE INDEX MYINDEXl ON employee (employee_name,city,)
CREATE INDEX MYINDEX2 ON sales(qty,sales_Person)

when i querry those tables i don't seem to get any difference in speed before and after adding these indexes or they are supposed to be executed in a special way.

secondly i need to know how i can create indexes that will be effective
What is the difference between clustered and non clustered indexes??

thanks guys
Posted
Updated 21-Nov-13 3:49am
v4

1 solution

Why don't you let the management studio tell you what's missing? It's a good start. Check the link for more info.
http://www.mssqltips.com/sqlservertip/1945/missing-index-feature-of-sql-server-2008-management-studio/[^]

Good luck!
 
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