Create a stage table with an identifier on it.
Before loading the stage table, truncate and reseed the identifier to start at 1.
Load your table. Each row now has a unique value from 1 to N.
Create a table that holds sequence numbers. This could be several rows, one for each sequence.
Lookup the sequence number from the sequence table you created.
Update the seqence number by adding the number of rows in the stage table to the sequence number.
Update the stage table identifier by adding the seqence number you looked up to it. This is an easy one step process.
or
Load your target table, add the sequence number to the identifier as you load in ETL. This can take advantage of the bulk loader and allow for other transformations.