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 a database in ms sql server?
What is the difference between Clustered and Non-Clustered Index?
How to modify an existing stored procedure in ms sql server?
What is the downside of using udf?
Explain having clause and where clause?
Can we create clustered index on composite key?
can a database be shrunk with users active? : Sql server administration
What are the methods used to protect against sql injection attack?
What is the significance of null value and why should we avoid permitting null values?
what is database replication? : Sql server database administration
How sql server enhances scalability of the database system?
What is instead of trigger sql server?
Name some of the open source software that you can use in alternative to SSR?
What do you understand by user-defined function in the sql server?
what is an extended stored procedure? : Sql server database administration