How many index keys possible for a table

Answers were Sorted based on User's Feedback



How many index keys possible for a table..

Answer / anand k

One table can only one clustered index or primary key and
249 non-clustered index or unique key

Is This Answer Correct ?    10 Yes 1 No

How many index keys possible for a table..

Answer / raji

Indexes may be defined as unique or non-unique. A unique
index acts as a constraint on the table by preventing
identical rows in the index and thus, the original columns.

Is This Answer Correct ?    9 Yes 1 No

How many index keys possible for a table..

Answer / namz

There can only be one clustered index but multiple non-
clustered index

Is This Answer Correct ?    8 Yes 2 No

How many index keys possible for a table..

Answer / koti

250 indexes(1 cluster index,249 non-cluster indexes)

Is This Answer Correct ?    7 Yes 1 No

How many index keys possible for a table..

Answer / 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

How many index keys possible for a table..

Answer / saravanan

four index keys is possible per one table.
read only table u havae create more then index per table

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More SQL Server Interview Questions

DIFFERENCE BETWEEN SQL SERVER 2005 and 2008

2 Answers   ADP,


what is the out put of below queries? a. select * from Emp where null = null; b. select * from Emp where 1=1;

13 Answers   Patni,


What is logshipping and its purpose?

0 Answers  


how many non clustered index in sql server 2008,2010,2012

2 Answers   Accenture,


What is difference between createstatement and preparedstatement?

0 Answers  


What are the differences between char and varchar in ms sql server?

0 Answers  


Can you pass expressions to stored procedure parameters?

0 Answers  


What is user-defined function? Explain its types i.e. Scalar and inline table value user-defined function?

0 Answers  


How to use clusters?

0 Answers   Amdocs,


What are indexers?

0 Answers  


How do you send email on SQL Server?

0 Answers   MindCracker,


Does partitioning help performance?

0 Answers  


Categories