What are the type of Indexes? which one is best, why?

Answers were Sorted based on User's Feedback



What are the type of Indexes? which one is best, why?..

Answer / arun pandey

Hi

1)Clustered Index
2)NON-Clustered INdex

But Clustered index is better than non-clusted
becoz the searching in clusterd is faster than non-clustered

Arun Pandey
A1Technology

Is This Answer Correct ?    3 Yes 0 No

What are the type of Indexes? which one is best, why?..

Answer / s. sundar

1. Clustered Index
2. Non-Clustered Index

Is This Answer Correct ?    1 Yes 0 No

What are the type of Indexes? which one is best, why?..

Answer / jeff jordan

1) Clustered Index
2) Non-Clustered Index

I'm assuming by "which one is best" we mean which has the
faster look ups. This would be the clustered index since it
is the physical ordering of the rows and the non-clustered
index is like a lookup table. With the clustered index one
you've found the index you've found your row...

Is This Answer Correct ?    1 Yes 0 No

What are the type of Indexes? which one is best, why?..

Answer / amit choubey

clusterd and non clusterd

Is This Answer Correct ?    0 Yes 0 No

What are the type of Indexes? which one is best, why?..

Answer / jay vardhan singh

Cluster is faster then non cluster index.We can use only
one cluster index on one table and we can use more then one
non cluster index on one table.

Is This Answer Correct ?    0 Yes 0 No

What are the type of Indexes? which one is best, why?..

Answer / a.ganesh

not only two type, more type of indexes there
such as Clustered Index with Primary And Index with Uniqu

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL Server Interview Questions

What are the different types of Indexes available in SQL Server?

0 Answers  


What is data modeling and Reterminal integrity?

0 Answers  


How to Install SQL SERVER 2005 remotely?

1 Answers   IBM,


How to find out the list schema name and table name for the database?

0 Answers  


Does sql server 2000 clustering support load balancing?

0 Answers  






Explain a join?

0 Answers  


What are the properties of the transaction?

0 Answers  


How to create prepared statements using odbc_prepare()?

0 Answers  


Explain boyce and codd normal form(bcnf)?

0 Answers  


What are the advantages dts has over bcp?

0 Answers  


Hi all, I need query help for below senorio, could you please help me. TableName = City CITYID ContinuationID CITYNAME 1 1 SAN 1 2 DIEGO 2 1 SAN 2 2 FRANCISCO 3 1 CHICAGO 4 1 NEW 4 2 YORK 4 3 CITY Could you please help me to write a generalized SQL that returns results as given below in the Query result CITYID NAME1 NAME2 NAME3 NAME4 NAME5 1 SAN DIEGO 2 SAN FRANCISCO 3 CHICAGO 4 NEW YORK CITY

5 Answers   TCS,


Can two tables share a primary key?

0 Answers  


Categories