What are the ways to improve performance of the following procedure:

Every day I take a datafile, bcp it into an intermidiate table without indexes (so that data import is as fast as possible), and then move it to a second table which have alot of complex indexes which guarantee data validity. Number of rows inserted each day is like 1 million.

Data retention on the intermediate table does not matter, so I was thinking about using in-memory table (which are unfortunately available only in 15.5) or disabling transaction log(is it possible to just 1 table?), or something else...

Any clues?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Use a (nonshareable) temporary table?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.