I have set up an MSSQL merge replication on a large database. One of the tables has 1.5 billion records and causes the snapshot agent to timeout on this table. So first I exported the data of the table to a .csv file, truncated the table and then run the snapshot agent again. Now with success. After the snapshot was made, and the subscriber is synchronized, I want to re-import the data from the .csv file. However, the merge replication uses automatic "Identity Range Management" with fixed values which I cannot change. One of these values contain the next starting value. Each new record inserted into the table will be incremented by 1 starting from this value. However, the exported data, of course, already has their ID value and I want to import these corresponding ID's again too. I already set the Publisher/Subscriber range size to 10 billion but only this won't fix the problem.
How will I ever be able to re-import this data with automatic identity range management?
Thanks in advance.