Hi all we are doing a data migration task which involves selecting the data from table and inserting it into other tables(which already have some records) inserting the data into new tables is taking so many hours it is taking 10 secons to insert a single record, Is there a way i can improve the performance of DML operations on this scenario? Thanks
sometimes its easier to drop the indexes, do the insert then create the indexes again. May try a normal old BCP. It is still the fastest way to go
Try what Mike suggested with BCP if these are straight forward inserts and also ensure to perform reindex on the tables that are involved, that updates the data pages too.