Answer Posted / devendra sharma
Yes it is possible that a primary key can be non clustered
create table abc(eid int PRIMARY KEY
NONCLUSTERED,ename varchar(50),vid int)
create clustered index abc_clustered on abc (vid)
now if you will check the index on eid cloumne it will be
unique and vid will have a clustered index.
Give it a try if you don't belive......
| Is This Answer Correct ? | 18 Yes | 0 No |
Post New Answer View All Answers
What is the server name in sql server?
explain declarative management framework (dmf) in sql server 2008?
how to create a scrollable cursor with the scroll option? : Sql server database administration
How to compose an inquiry to demonstrate the points of interest of an understudy from students table whose name begins with k?
How to get a list of all tables with "sys.tables" view in ms sql server?
Difference between LEN() and DATALENGTH() in sql server ?
What is the distinction amongst delete and truncate?
What are the differences between INNER JOIN, LEFT JOIN and RIGHT JOIN in SQL Server?
what are different types of backups available in sql server? Given a particular scenario, how would you go about choosing a backup plan? : Sql server database administration
What is Fragmentation and Defragmentation? For 32GB Table,How can we do the fragmentation?
What is single-user mode and what are the steps you should follow to start sql server in single-user mode?
You are creating an application where users are asked their gender in the gender combo box you have three options: ‘male’ , ‘female’ and ‘i choose not to disclose’ these options are stored in the table as 1, 0 or null which datatype should you use?
How do I run sql server 2014?
What is normalization? Explain different forms of normalization?
Explain having clause and where clause?