6

Currently, one of our product running on the SQL Server 2008R2.

For new installation client want to go for SQL Serer 2014 because at this location Microsoft is not selling licence for the SQL Server 2008R2.

asked Jun 25, 2014 at 7:27

3 Answers 3

11

In SQL Server 2014, you can restore a user database from a database backup that was created by using SQL Server 2005 or a later version. However, backups of master, model and msdb that were created by using SQL Server 2005 through SQL Server 2012 cannot be restored by SQL Server 2014. Also, backups created in SQL Server 2014 cannot be restored by any earlier version of SQL Server.

Source

answered Jun 25, 2014 at 7:31

1 Comment

Does that mean that I can directly import backup and restore it. Do you know maximum size of database that 2014 suporting
4

Yes.

Wen you restore database backup that created with older version of SQL Server in to new version, SQL Server automatically updated your database in new version. But don't change compatibility level of your database. You can change Compatibility level of your database after restore complete by following query :

ALTER DATABASE test SET COMPATIBILITY_LEVEL = 120
answered Jun 25, 2014 at 7:39

5 Comments

Does that mean that I can directly import backup and restore it. Do you know maximumsize of database that 2014 suporting
Yes. you can directly backup from SQL Server2008R2 and restore into SQL Server 2014 without any limitation.
Right now, we are running on the Window SERVER 2008 R2 64 Bit OS - Service Pack 1. Is SQLSERVER2014 compatible with that?
@vishal. Yes. you only must restore your backup. I Upgrade all on my database on my company from SQL Server 2008R2 and SQL Server2012 to SQL Server 2014 with backup and restore (about 45 database).
@mehdi lotfi Does changing to 120 after restoring from 2008 R2 to 2014 gives some kind of performance gain ? Because actually it is slower than when the database was in 2008 R2
0

In SQL Server 2014 SP1 there are breaking changes to the restoreheader definition (3 new fields added). If you use it, you should have a look at this thread: breaking changes to SQL Server 2014 SP1 - restoreheader

answered Oct 21, 2015 at 12:24

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.