In SQL server, I am trying to insert values from one table to another by using the below query:
delete from tblTable1 insert into tblTable1 select * from tb
Beware of triggers. Maybe the issue is with some operation in the trigger for inserted rows.