How Clustered Index and Non clustered index stored on SQL
server?

Answers were Sorted based on User's Feedback



How Clustered Index and Non clustered index stored on SQL server?..

Answer / anitha

clustered index that reorders the way in which records in
the table are physically stored.
non clustered index in which the logical order of the index

Is This Answer Correct ?    14 Yes 2 No

How Clustered Index and Non clustered index stored on SQL server?..

Answer / answerme

Clustered Index are always stored on disk in a certain
order i.e, the data on disk may well be stored in order of
the Primary Key. So the data retreival is faster, when
queried based on Primary key.

non Clustered indexes are all the other indexes on a table,
that do not dictate the order that records are stored on
disk.A non Clustered index stores all the fields that
comprise the index, plus a link to the actual full record
on disk. This link is the primary key (clustered index), so
in fact a non clustered index contains all the columns that
you specify for them plus the clustered index columns too.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

What is work flow gen? how can it will work with .Net?

0 Answers   TCS,


Explain what a diffgram is, and a good use for one?

1 Answers  


How Can we use multiple forms in single asp.net application?

3 Answers   Polaris,


Is LINQ performance wise better or using sqlcommand?

1 Answers  


Explain the main function of razor in asp.net? : asp.net mvc

0 Answers  


How do you initiate validation on the server manually? What are two situations when you might you want to do that?

0 Answers  


How to kill session?

18 Answers   Protech,


What is tracing? Where is it used?

0 Answers  


How about the security in Activex DLL and Activex EXE ?

0 Answers   DELL,


What’s the use of “GLOBAL.ASAX” file?

0 Answers  


How to authenticate users using Web.Config ?

1 Answers   Accenture,


What is session in web technology?

0 Answers  


Categories