I have at my test database datatable Tags.
ID int autoincrement
Name nvarchar(255)
I want to transfer this table to my production database.
How to do it if I want to have the same ids foreach element
The problem is that my start index at testdatable is 15, and some ids don't exist because I removed theirs.
So:
Situation at Test datable
15 sport
18 money
30 homework
Desired situation at production datatable
15 sport
18 money
30 homework
At start production datatable is empty, and has autoincrement too.