How Clustered Index and Non clustered index stored on SQL
server?
Answer Posted / 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 View All Answers
Define view state.
What does passport and windows authentication mean in ASP.NET?
What is paging in context of Memory?
If you want to write your own dot net language, what steps you will you take care?
What are server-side comments in ASP.NET?
Using code explain Configuration Management
What does mean by a neutral culture?
Can master pages be nested?
Explain cookies with example.
How do cookies work?
What is sdlc process?
How do http sessions work?
What is asp.net globalization?
What is a postback ispostback and autopostback in asp net?
When should I use server transfer and response redirect?