Monday, November 14, 2016

Clone an SQL Server database on the same server in SQL Server 2008 Express




  1. Install Microsoft SQL Management Studio, you can download it for free from Microsoft website:
    Version 2008
    Microsoft SQL Management Studio 2008 is part of SQL Server 2008 Express with Advanced Services
    Version 2012
    Click download button and check ENU\x64\SQLManagementStudio_x64_ENU.exe
    Version 2014
    Click download button and check MgmtStudio 64BIT\SQLManagementStudio_x64_ENU.exe
  2. Open Microsoft SQL Management Studio
  3. Backup original database to file (db -> Task -> Backup).
  4. Create empty database with new name (clone).
  5. Click to clone database and open restore dialog (see image) restore dialog
  6. Select Device and add the bakcup file from step 1. add backup file 4.Change destination to test database change destination
  7. Change location of database files, it must be different from the original. You can type directly into text box, just add postfix. change location 6.Check WITH REPLACE and WITH KEEP_REPLICATION
  8. with replace  Source : http://stackoverflow.com/questions/3829271/how-can-i-clone-an-sql-server-database-on-the-same-server-in-sql-server-2008-exp

No comments: