Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

can primery key be a non clustered index?

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


Please Help Members By Posting Answers For Below Questions

What is collation sensitivity? Explain different types.

1054


What are the difficulties faced in cube development? : sql server analysis services, ssas

1096


What is the report model project?

151


What is trigger and different types of Triggers?

1199


where the connection string store in the database

2120


How do I find the default sql server instance?

988


Explain cross join or cartesian product in sql?

927


What are system databases into sql server (2005/2008)?

1044


In case you have filters in your report, when filters will be applied in cached report instance?

119


What are logical/boolean operations in ms sql server?

1101


Explain different types of BACKUPs avaialabe in SQL Server? Given a particular scenario, how would you go about choosing a backup plan?

1085


What is the datatype of rowid?

963


What is nolock?

1035


What are the two modes of authentication in sql server?

1133


I create a separate index on each column of a table. What are the advantages and disadvantages of this approach? : Sql server database administration

1133