vote up 1 vote down star
1

Is there any way to import a database backup from 2005 into 2008 express edition. What I've had to resort to is doing a script the database, then import all the data through DTS. Whenever I tried to import straight from a backup file it says something about not being to import into a new version of sql server or I'll get the below error.

title: Microsoft SQL Server Management Studio

Specified cast is not valid. (SqlManagerUI)

flag

3 Answers

vote up 1 vote down

SQL 2005 backups should be restored on 2008 without problem (have done that myself many times). What exact error message did you got about versions? The other error (Specified cast is not valid) seems to be Management Studio error, not server error. Have you full rights on 2008 server?

Look at this question - any-reason-to-have-sql-server-2005-and-2008-installed-on-same-machine - there are talked both about restoring SQL2005 backups and about attaching SQL2005 data files.

(Of course you cannot attach production databases. To attach non-production databases just detach them, make file level copy of these and attach copies to new server. Orginal files need to attach to original server too :))

link|flag
vote up 0 vote down

I imagine that you are in a development process where your data will have to be regularly copied to you SQL 2008 server.

You can then think of configuring a replication between the SQL 2005 server (publisher) and SQL Server Express 2008 (suscriber). Depending on your requirements, you have the choice between snapshot or merge replication. If no update is done on the suscriber side, go for snapshot.

Once you want to have your 2008 server running independantely from the publisher, just delete the replication.

link|flag
vote up 0 vote down

But what if the bkp used different windows principle user name of different server? what do u suggest? plz explain in brief

link|flag

Your Answer

Get an OpenID
or

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