What are indexes? When do you need to create Indexes?
Answer Posted / murtaza
INDEXES:
1.indexes are used for performance as well as query
optimization issues in database.
2.indexes are by default created when u create an primary or
unique index on a particular column in a table.
3.In sql server there are 2 types of indexes
1.clustered index
2.non clustered index
4.By default non clustered index are created in sql server 2005.
WHEN TO CREATE INDEXES:
1.indexes should be created on the tables which will be used
frequently.
2.it should be created on d tables which has large amount of
data.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Can two tables have the same primary key?
How connect excel to sql server?
Explain different types of locks in sql server.
what is the information that can be stored inside a bit column? : Sql server database administration
What are system databases into sql server (2005/2008) : sql server database administration
Can you create a logon trigger in sql server 2005 express edition?
What is a heap?
What are alternate keys?
What happens if null values are involved in comparison operations?
How do you manipulate data?
How do I create a trace in sql server?
Can you import Microsoft Excel data to SSRS?
Why should we go for stored procedures? Why not direct queries?
What are recommended options to be used while using db mirroring? : sql server database administration
Do you know what is fill factor and pad index?