Hi friends,
I want to know What's the fastest way to get a thousand records into the database?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Jun 6, 2012, 11:46 PM
You can create non-cluster index on table column which are used in where condition or used in join.
Also Analyze an Execution Plan for you query, In Execution plan you may see which join or which part of query has maximum cost. SQL server management Studio also suggest non cluster index from execution plan.
please refer
http://www.simple-talk.com/sql/sql-training/the-sql-server-query-optimizer/
hope this will help you.