Answer Posted / c.jagadish
In sqlserver we have two types of indexes (1) Clustered (2)
non clustered indexes.
Indexes may be simple index or composite index.
Index formed based on single column values is called simple
index
index formed based on multiple column values is called
composite index.
Default index is NON CLUSTERED INDEX
When a table contains a primary key column then sqlserver
automatically creates a unique clustered index.
Unique--- automatically creates a non clustered index
so for this reason PRIMARY KEY IS NOT EQUAL TO UNIQUE + NOT
NULL.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
how would you troubleshoot blocking? : Sql server database administration
What is temporal table?
Explain what are the authentication modes in sql server?
What is an sql server agent?
What is the difference between delete and truncate statements?
What is the difference between Triggers and Stored Procedure?
Which table keeps information about stored procedures?
What are indexers?
Do you know what is rank function?
Explain the commands in sql server?
Explain the difference between delete,drop and truncate in SQL Server?
What is server-level principal?
How to provide values to user defined function parameters?
State the difference between union and union all?
How to use old values to define new values in update statements in ms sql server?