Can Somebody tell me the difference between Clustered & Non-
Clustered Index??
Answer Posted / anjan ghosh
when we create index then we assign a primary or unique
field , after insert of records , the results is
clustered--(field) order by
nonclustered--no order(logical order)
create table nonclusterindex(Emid int,data varchar(800))
create table clusterindex(Emid int,data varchar(800))
create unique nonclustered index nonclusterindex_emid on
nonclusterindex (Emid)
create unique clustered index clusterindex_emid on
clusterindex (Emid)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of floor function in sql server?
Can you explain different types of locks in sql server?
What is resource governor?
Other than truncate statement, which other command can by-pass the trigger on the tables?
What is enhanced database mirroring in sql server 2008?
What are the steps to insert a table?
How do we know if any query is retrieving a large amount of data or very little data?
You want to use bids to deploy a report to a different server than the one you chose in the report wizard. How can you change the server url?
What is the difference between a function and a stored procedure?
What stored by the model?
Explain use of expression builder.
Delete duplicate rows without using rowid.
Explain about the command-line tool SQLCMD?
Can sql server be linked with other servers like oracle?
What is relationship? What number of sorts of relationship are there?