Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to migrate 2 database from my old SQL Server 2000 to my new server with the 2008 version.

I do that with the Management Studio 2008 with the export data task. It works fine and no error occurs but in the database on my new server all primary keys are missing.

Did anyone knows why or has another idea how to solve my problem.

share|improve this question
If i show the properties of the connection in the management studio there is version = 8.00.760 and product = microsoft sql server desktop engine....i have not more informations about that server – bladepit Feb 22 at 12:55
4  
So that's SQL Server 2000 with Service Pack 3a. Can't you just take a copy of the mdf and ldf and attach it? See How to: Upgrade a Database Using Detach and Attach – Martin Smith Feb 22 at 13:00
1  
@MartinSmith is correct, and remember to set the compatibility level to whichever level you need (maybe you need it to remain in 2000 compatibility?) – Codesleuth Feb 22 at 13:13
thank you martin! this was the solution! – bladepit Feb 22 at 18:34

1 Answer

up vote 0 down vote accepted

When you get to the Select Source Tables and Views step of the export wizard you need to do Edit Mapping for each selection, then select Enable Identity Insert. If you don't check this option the primary key values are not exported.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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