I am using sql server 2012 enterprise version..
I have got table structure like below.. I need to remove the primary key and need to add primary key to the first column it self
and the table structure is given below ..
CREATE TABLE [dbo].[ActivationInfo](
[cert_id] [int] NOT NULL,
[ActivationKey] [varchar](1800) NULL,
[Activated_ts] [datetime] NULL,
[Activated_by] [int] NOT NULL,
[FLAGGED] [varchar](20) NULL
) ON [PRIMARY]
how can i remove the primary key that is already set on multiple fields after that i need to put primary key only for cert_id
would any one please help on this..