Quantcast
Channel: SQL Server Migration forum
Viewing all articles
Browse latest Browse all 1700

Migrate entire database to new machine from MSSQL 2008 R2 to MSSQL 2016

$
0
0

I already migrate database from MSSQL 2008 R2 to MSSQL 2016 to new machine. Below is the steps that I used: 

Detaching and Attaching: To move a database using detach and attach, you should make the following steps:
1)    Detach the database.
2)    Move the database file(s) to the desired location on another server or disk.

3)    Attach the database specifying the new location of the moved file(s):  After detaching, the database will be removed from SQL Server but will be intact within the data and transaction log files that compose the database. You can use these data and transaction log files to attach the database to any instance of SQL Server, including the server from which the database was detached. After attaching, the database will be available in exactly the same state it was in when it was detached.

Ref: http://www.sqlcircuit.com/2012/10/database-migration-from-sql-server-2000.

But I'm not sure how to ensure that MSSQL that I already migrate is using new engine in MSSQL 2016. And how I can check the performance of the MSSQL. 



sha


Viewing all articles
Browse latest Browse all 1700

Trending Articles