difference between a clustered and non-clustered database?
rcvu
2006-05-08 12:16:32 UTC
difference between a clustered and non-clustered database?
Three answers:
Ravi Kant
2006-05-08 12:40:29 UTC
I guess this is u r looking for..
A clustered index is a special type of index that reorders the way records in the table are physically stored. Therefore table can have only one clustered index. The leaf nodes of a clustered index contain the data pages.
A nonclustered index is a special type of index in which the logical order of the index does not match the physical stored order of the rows on disk. The leaf node of a nonclustered index does not consist of the data pages. Instead, the leaf nodes contain index rows.
anonymous
2006-05-08 12:31:12 UTC
Clustered data base has too many record in some portions, and have too many free indices in other portions. an inefficient hashing function can be the result of a clustered data base. Imagine a data base with a 1000 spots which has most records conentrated around indices 200 and 100, and rest of the database is just empty: it is a clustered data base.
run4ever79
2006-05-08 12:38:16 UTC
A clustered system is split across serveral separate machines (physical or virtual). This approach improves ones ability to handle a lot of select-type transactions because of the ability to spead the load across the system. Inserts, updates, and deletes can have some added overhead due to the need to synchronize the data on each system.
ⓘ
This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.