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

A database that was originally from SQL Server 2008, was restored into SQL Server 2012. A backup from SQL Server 2012 was made and I am trying to restore it on my local SQL Server 2008 Express. However I get an error 'Specified cast is not valid' (SQLManagerUI).

I have generated an SQL Script from 2012 and set it so that it will generate with compatibility to SQL Server 2008. However it is a large sql file, around 700mb.

I recall before that I had tried to run a script of that size before on my local SQLExpress and also got an error.

Is there a way I can get a "large" database from SQL Server 2012 into SQL Server 2008 Express?

share|improve this question
2  
You can never go "back" in terms of versions in SQL Server. If you backed up your database in a 2012 version, you cannot restore that backup to a 2008 version. Just won't work - no tricks or ways around it, either :-( – marc_s May 25 '12 at 11:09
Oh, no. Thanks Marc. I'll try to see if I can run the generated sql script to get a copy of the database into my local sql express. – stormwild May 25 '12 at 11:25
1  
1  
Also see my answer here: stackoverflow.com/questions/10303791/… – Aaron Bertrand May 25 '12 at 12:39

1 Answer

up vote 9 down vote accepted

Thanks to Marc and Aaron for providing the answers.

The quick answer is no, it's not possible to restore a backup file from a higher version to a lower version of SQL Server.

A work around would be to generate the scripts to create the database.

You can target the script generation to a lower version.

Please see comments above for more information.

Links:

Why an SQL Server Database from a higher version cannot be restored onto a lower version of SQL Server?

Create Database in SQL Server 2012, Script and Use in 2008?

share|improve this answer

protected by Community Apr 18 at 0:35

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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