Appending data to an existing table

  • Hi

    I have two tables with same column names. I want to append the data from one table into the other table. This data was exported to SQL server from an Access database. +- 4 million records.

    Please assist

  • Do you want to eliminate duplicates or do you just want to append all records from one table to the other?

    In the second case just do:

    INSERT INTO TABLE1

    SELECT * FROM TABLE2

    [font="Verdana"]Markus Bohse[/font]

  • Thanks for the solution

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply