Move the data from SAN(old) to new SAN

  • Hi,

    I want to move the data from SAN(old) to SAN(new), but I am running replication, see my isssue

    I do have one box and it is Cluster to server1 (active) and server2(passive) use as a Publication, then I have distributer server, from that server I am running the Transactional Replication too three server, all my server connected to the same SAN, know we want to move from old SAN to new SAN. Can you please let me know how to handle this issue.

    Thanks

  • If you can perform the move during a time that the databases are static, perhaps on the weekend, you can temporarily shut down the SQL Server Agent service(s) that are running the replication jobs. Alternately you can drop replication, perform your moves, and then re-establish replication following the database file moves.

    For non-system databases, the general procedure is:

    1. Take the database offline

    2. Copy the files

    3. Update the system catalog using ALTER DATABASE statements, for example:

    ALTER DATABASE myDB MODIFY FILE (NAME = LogicalName, FILENAME = 'D:\DATA3\PhysicalName.mdf');

    4. Bring the database online

    For system databases, follow the procedures in BOL or here: http://msdn.microsoft.com/en-us/library/ms345408(SQL.90).aspx.

    If you have a large number of file to move, you may find it useful to write some dynamic SQL to generate your ALTER DATABASE statements as well the batch files to perform the copy.

    Hope this helps. I regret that I cannot answer any clustering-specific concerns.

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply