Sql-server – Moving and upgrading a whole SQL server instance (2008->2008R2) from a physical server to virtual server (2003->2008)

migrationsql server

I am not a DBA/server admin, and unfortunately we don't really have any currently. My organization wants to move a SQL server 2008 instance running on Windows Server 2003 (physical) over to 2008R2 running on Windows Server 2008 (Virtual).

I am wondering if there are any tools that would make this process as painless as possible? We want to move over everything icluding logins, SQL agent jobs, etc if possible. It looks like we could use the built-in Copy Database Wizard to move the databases themselves, but how about the other server objects?

Best Answer

I have never done this myself but I see no reason why it can't work, if you have access to integration services have a look at the following links.

http://www.mssqltips.com/sqlservertip/2064/transfer-database-task-and-transfer-sql-server-objects-task-in-ssis/

http://www.mssqltips.com/sqlservertip/2081/transfer-sql-server-jobs-task-and-transfer-sql-server-logins-task-in-ssis/

The second link was the top result of the google search for "migrate SQL jobs and logins", there are quite a few results so you may want to read through them and see if there are any more results that would suit you better

Related Topic