Would it be a good idea to create an index on a table that
always contains 10 records? Why or why not?

Answers were Sorted based on User's Feedback



Would it be a good idea to create an index on a table that always contains 10 records? Why or why ..

Answer / bharathi

No it is not a good idea. Indexes are very expensive to
maintain. Indexes are created mainly to improve performace.
If there are only 10 rows in a table, creating index would
not make any difference in the performace.

Is This Answer Correct ?    5 Yes 0 No

Would it be a good idea to create an index on a table that always contains 10 records? Why or why ..

Answer / laxman

Not a good idea.

Indexes are used for improve select query performance.
indexes will be useful when the data is more and more.

Is This Answer Correct ?    3 Yes 0 No

Would it be a good idea to create an index on a table that always contains 10 records? Why or why ..

Answer / subhash

No it's not a good idea.

Table scan would be fine for smaller tables with less records. Moreover indexes need disk space. It's not necessary to create an index and waste the disk space.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL Server Interview Questions

How to use the inserted and deleted pseudo tables?

0 Answers  


What are the types of backup and tell me the difference between full and differential backup?

4 Answers   CTS, TCS,


Suppose you want to implement the one-to-one relationships while designing tables. How would you do it?

0 Answers  


How do you make a trace?

0 Answers  


What is query optimizer in sql server?

0 Answers  






Which index created when Create Index on table(col), Why

2 Answers   CGI,


Do you know what are the restrictions that views have to follow?

0 Answers  


About types of indexes in SQL server ?

2 Answers   Cognizant,


What is merge replication?

0 Answers  


Write the queries for commands like Create Table, Delete table, Drop Table etc.

0 Answers   HPCL, Hughes Systique Corporation,


What is xml datatype?

0 Answers  


How is a full-text index updated?

0 Answers  


Categories