I have a table that doesn't have any primary key. data is already there. I have made a non clustered index. but when i run query, actual execution plan is not showing index scanning. I think non clustered index is not working. what could be the reason. Please Help Me

link|improve this question
2  
You need to provide more detail! There are several reasons why the query optimizer may decide to ignore the index (if the table is very small, if the index key used is deemed not selective enough, if the query includes additional predicates etc.) Without your showing the table structure (eg. create table script), the index creation script, the query and the query plan, and also without some statistics about the data, it will be very difficult to help you beyond general considerations. – mjv Dec 7 '10 at 6:41
feedback

2 Answers

First of all - why isn't there a primary key?? If it doesn't have a primary key, it's not a table - just add one! That will help on so many levels....

Secondly: even if you have an index, SQL Server query optimizer will always look at your query to decide whether it makes sense to use the index (or not). If you select all columns, and a large portion of the rows, then using an index is pointless.

So things to avoid are:

  • SELECT * FROM dbo.YourTable is almost guaranteed not to use any indices
  • if you don't have a good WHERE clause in your query
  • if your index is on a column that doesn't really select a small percentage of data; an index on a boolean column, or a Gender column with at most three different values doesn't help at all

Without knowing a lot more about your table structure, the data contained in those tables, the number of rows, and what kind of queries you're executing, no one can really answer your question - it's just way too broad....

Update: if you want to create a clustered index on a table which is different from your primary key, do these steps:

1) First, design your table 2) Then open up the index designer - create a new, clustered index on a column of your choice. Mind you - this is NOT the primary key !

alt text

3) After that, you can put your primary key on the ID column - it will create an index, but that index is not clustered !

alt text

link|improve this answer
2  
+1. Beat me to it! I'd give it +5 for " why isn't there a primary key?? " if I could – Mitch Wheat Dec 7 '10 at 6:38
thank you marc_s – Mohan Sharma Dec 7 '10 at 6:49
feedback

Without having any more information I'd guess that the reason is that the table is too small for an index seek to be worth it.

If your table has less than a few thousand rows then SQL Server will almost always choose to do a table / index scan regardless of the indexes on that table simply because an index scan is in fact faster.

An index scan in itself doesn't necessarily indicate a performance problem - is the query actually slow?

link|improve this answer
table has around 2000 rows. We can only make clustered index on primary key. but if i create index using table designer, there is an propert Create as Clustered. What is this? The Column on which i am making index is not primary... – Mohan Sharma Dec 7 '10 at 7:28
@Mohan this link is a reasonably a good introduction article on clustered indexes - in simple terms the clustered index determines what order the records are stored in. Note that the clustered index (tables may have at most one) and the primary key are completely different concepts and serve different purposes, however in 99.9% of cases the same columns are used for both. – Justin Dec 7 '10 at 7:36
@Mohan Also, 2000 rows probably is small enough to make a table scan / index scan the most efficient query plan (depending on the size of the columns) - unless the query is slow I wouldn't worry too much about it. – Justin Dec 7 '10 at 7:38
@Kragen thank you very much for your response. I want to send you print screen of my problem. How can i do this? – Mohan Sharma Dec 7 '10 at 8:33
@Mohan Sharma: no, you can put your clustered index on any column(s). It's on the primary key by default, but it doesn't have to be.... – marc_s Dec 7 '10 at 8:50
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.