Hi indradeo,
You are trying to insert a duplicate value (1) in dbo.lead_lag table in primary column.
A Primary Key is unique throughout the table. You can't insert the same value into a primary key column twice.
To avoid the error you can set auto increment for the primary column and then there should never be a problem with duplicating the value, the database will take care of that.