0

The database was backed up on a server running version 10.50.1600. That version is incompatible with server, which is running version 10.00.1600. so, is there any solution or plugin's for restore the database ?

Christian.K
  • 47,778
  • 10
  • 99
  • 143
  • 2
    Your question is a duplicate. Read the answer here: http://stackoverflow.com/questions/6183139/sql-server-database-backup-restore-on-lower-version – dcaswell Aug 23 '13 at 04:30

4 Answers4

1

You can download SQL Express 2008 R2 (free edition) or 2012 to restore the database. The problem is not the management studio but the SQL Server engine itself. Here are the versions:

http://sqlserverbuilds.blogspot.com/

As you can see, 10.50 is the 2008 R2 and 10.00 is the 2008.

Arsen
  • 965
  • 8
  • 7
0

-Frst, you export the database on the server running version 10.50.1600 by following this link. Export to SQL Script

  • After that, you can, import again into your current database which is running version 10.00.1600
Community
  • 1
  • 1
0

I would suggest an this might be a rather sloppy way is to use Database Publishing Wizard or you can click right on the Database in SQL Server Management Studio -> Tasks -> Generate Scripts.

Select all the objects. Then when it shows the path of the script file click on the Advanced button. Ensure to include

Types of data to script = Schema and Data

Script USE DATABASE = True

You can check if their might be anything else required. Once the script execute try and restore it on the previous SQL Server version. If any problems arise, I would think you might have some control by fixing the scripts to inserts. It might take long but I would think it's probably the best shot.

INSTRUCTIONS ON GENERATING SCRIPTS

Conrad Lotz
  • 8,200
  • 3
  • 23
  • 27
0

Nopes, not possible. Only thing you can do is to upgrade your instance or a newer version or generate scripts in some way and then execute these on the previous version.

Generate scripts – use this only if this is a small database because scripts are not necessarily in correct execution order.

Third party tools – there are tools that can generate scripts in correct execution order from the live database or read the backup and generate scripts from there.

More details here SQL Server database backup restore on lower version

Community
  • 1
  • 1
Maisie John
  • 1,016
  • 9
  • 9