Sql-server – Restore msdb from SQL Server 2008 R2 to SQL Server 2012 instance

sql serversql-server-2008-r2sql-server-2012

I'm moving from a SQL Server 2008 R2 instance to a SQL Server 2012 instance on a separate box. I want to restore msdb to get all my agent jobs and the like and I'm getting the following error:

Restore of database 'msdb' failed.
(Microsoft.SqlServer.Management.RelationalEngineTasks)
System.Data.SqlClient.SqlError: The backup of the system database on the device
\10.0.0.3\BackUps\NOFAULT2010_msdb_FULL_20121016_220006.bak cannot be restored because
it was created by a different version of the server (10.50.1600) than this server
(11.00.2100).
(Microsoft.SqlServer.SmoExtended)

I would understand this if I was trying to go from 2012 to 2008 but this is new to me.

Anyway to get this to work? Or if not best way to transfer the agent jobs, users, blazi blah ?

Thanks

Best Answer

If you were trying to restore a user database - this would restore alright. The problem is that this is a system database. The system databases are designed for the version of SQL they were intended to work in. In order for SQL Server 2008 R2 MSDB to work in SQL Server 2012, you'd have to have no features different between the two versions. Make sense?

The Short Answer To bring your jobs across, you'd script them out from the old server and apply the script on the new one. You can do this as simply as right clicking and scripting each job if you have a few. Or looking into a script with PowerShell or some other approach if you have a ton and don't want to one at a time.

To take the Logins you'd use the Sp_help_revlogin script I reference below and a script to copy server level roles and permissions from the old and copy them to the new..

Basically for 90% of what you'd bring across, I'm pretty sure the answer is "script it out" and then just apply that script on the new server and the logins, the jobs, etc. will all now live in the Master and MSDB databases designed for SQL Server 2012.

The slightly longer answer and a quick discussion on approaches to migration/upgrade

So if you are trying to transfer all of these objects to SQL Server 2012 you have two basic options on your approach.

  1. Do an in place upgrade. Upgrade your instance from SQL Server 2008 R2 to SQL Server 2012..

Pros - you get all that 'stuff' (agent jobs, linked servers, logins, alerts, operators, mail profile, etc.) and you don't have to copy objects around..

Cons - it can be a bit messy, it works fine nowadays and is supported but I am paranoid and like to know for sure that I have success and a quick rollback option (if issues on new server, just revert back to your old server during a migration. With an in place upgrade, it is much more, well, final).

You can start here for an in place upgrade.

  1. Migrate to a new server...

In this case you just flip the pros and cons from above.. The approach isn't that tough or strenuous. It just requires some good planning. Basically you:

  • On your old server, script out all of the objects you want to move according to the instructions and approach for each object type which can typically be found in Books Online (objects like Jobs, Linked Servers, SQL Agent Alerts, etc.)...

  • Use a tool like sp_help_revlogin to move your logins across and a script kind of like this to move the login permissions across..

  • Backup and restore your databases which already contain the in-DB users and permissions(I like doing this over detach attach because it helps preserve that rollback ability but I've seen and done this either way).. Change your compatibility mode if you are planning on supporting the DBs in 2012 mode and have tested them that way. Or keep them in 2008 mode if that was your plan.

  • Run those scripts for all of the objects like jobs, logins, etc. on the new server that you created above from the old server(good to do most of these after the DBs.. as logins will error on you if their databases that they default to aren't there or a T-SQL step in a job's database isn't there, etc.)

The other nice thing about this approach is you can do a trial run ahead of time during business hours.. Point a test or dev version of the app(s) used on that instance to the 2012 and see what breaks.. Fix it and test out your checklist, your rollback plan, etc. and do that prep for go live night.