I'm working on getting data loaded into a database table on SQL server.
I've got 2 Access 2000 databases - 1 has 2003 information in it and the other has 2004-05 info in it. I was having some issues with combining the two, mainly because both Access databases use an Order Number field which is Autonumbered as the Primary key. There aren't any duplicate key issues, it just will not let me bring them over without completely redoing the Autonumber in SQL server, because that's how the SQL server table is set up. When I try and combine the two access databases into one, it redoes the autonumbering as well.
Basically, what i need is to bring over 2003 data (ex. Order Numbers 1-1000) and then 2004-05 data (Order Numbers 1001-2000) and then continue the autonumber from there (2006 would start at 2001-3000 and so on). When I tried to combine, it just completely restarted the autonumber on me. Do you have any suggestions on how to get this working?