How Clustered Index and Non clustered index stored on SQL
server?
Answers were Sorted based on User's Feedback
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 |
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 |
What is work flow gen? how can it will work with .Net?
Explain what a diffgram is, and a good use for one?
How Can we use multiple forms in single asp.net application?
Is LINQ performance wise better or using sqlcommand?
Explain the main function of razor in asp.net? : asp.net mvc
How do you initiate validation on the server manually? What are two situations when you might you want to do that?
How to kill session?
What is tracing? Where is it used?
How about the security in Activex DLL and Activex EXE ?
What’s the use of “GLOBAL.ASAX” file?
How to authenticate users using Web.Config ?
What is session in web technology?