One of my ETL moves about 18 Million rows from one server to another for further processing. I am using the FAST LOAD
option.
For the Identity Column, I have two options:
- Use
IDENTITY INSERT
- Don't set any input for the Identity Column, thereby forcing SQL Server to generate a new IDENTITY for each row inserted
The value of the Identity column does not matter.
Which option should I choose for the best performance?