Difference between Cluster and Non-cluster index?
Answer Posted / veerreddy
clustered index is that the order of data in table is always
equal or matches to order of data stored in index.there is
only one(1) clustered index for table.it is usually applied
on primary key column in table.
other hand the non-clustered index is that the order of data
in table is not equal or matches to order of data stored in
index.so they can be applied on non-primary key columns like
unique,foreign key etc.A table can have (249) non-clustered
indexes
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Where the sql logs gets stored? : sql server database administration
Explain what is the purpose of sql profiler in sql server?
Explain nested stored procedure. Syntax and an example for create nested stored procedure?
What is the federation in sql azure?
What is merge join?
What are page splits? : SQL Server Architecture
you have separate development and production systems you want to move a copy of a development database into production to do this, you do a backup on the development system and restore to the production system after a few minutes, you begin getting calls from several customers saying that they are denied access to the system why? : Sql server administration
Where sql server user names and passwords are stored in sql server? : sql server database administration
Explain about temporary stored procedure?
Create a dts package to produce a text file using the ‘update statistics’ command for the tables in a database with obsolete statistics.
How can I check that whether automatic statistic update is enabled or not?
Equi join and non equi join is possible with sql server?
Do you know what is a trace frag? Where do we use it?
how to use DTS package in 2000,2005,2008 in sql server
What is bcnf normalization form?