user899055
user899055

Reputation: 301

SQL Server 2008 - To Insert/Update in Main table from Staging table

Once the data is imported in a Staging table through Bulk Insert, then I need to do two steps:

  1. Transformations
  2. Insert/Update in Main table

Is the JOINS are the best tool OR there is something quicker/more efficient to perform these tasks?

Upvotes: 1

Views: 1389

Answers (1)

marc_s
marc_s

Reputation: 754468

I would probably do something like this:

  • make your transformations on that staging table (add additional columns as needed etc.)
  • do the INSERT/UPDATE into the actual data table using the SQL Server 2008 MERGE command which is ideally suited for just this - update some existing rows, insert some new rows (and possibly delete some old "orphaned" rows). It's a single command which can handle just about all insert, update, delete scenario in a single call

See some great articles on how to use the MERGE command:

Upvotes: 2

Related Questions