You are here: User_Guide > Clustering > Extending a Single SQL Server Node to a Cluster

Extending a Single SQL Server Node to a Cluster

This guide explains how to install a single SQL Server node and extend it to a clustered node. Please read this document carefully prior to installation.

Planning Steps:

The following steps explain how to manually create this resource:

  1. In the Failover Cluster Manager, create an empty role, right-click on Role and select Create Empty Role.
  2. Right-click the empty role and select Add a Resource, More Resources, then select Add DataKeeper Volume.
  3. Right-click the new DataKeeper Volume resource and select Properties.
  4. Enter the Resource Name you chose earlier (Example: “DataKeeper Volume F (NonMirrored)") then select Done. No other properties changes are needed at this time. Follow the steps below for setting the Properties needed for the non-mirrored resource.
  5. Repeat the steps a - d for the E drive.

Assign the following properties using Powershell:

VolumeLetter = ”F” (if the drive letter is F, otherwise whatever the drive letter is)

NonMirrored = 1 (there is no space between Non and Mirrored)

Assign the following properties using Powershell:

After the storage is created, right-click and select Remove from empty role. This will move the storage to Available Storage which can now be used by SQL Server installation in the following steps.

It is highly recommend using the MOVE option of the RESTORE option to move the files to separate drives (separate DATA and LOG file). The following example shows how to move a sample Sales database to different drives. (Note: The data and the log files are moved to different volumes.)

RESTORE DATABASE sales

FROM DISK = 'C:\Backup\Sales.bak'

WITH RECOVERY,

MOVE 'Sales_Dat' TO

'E:\MSSQL11.MSSQLSERVER\MSSQL\Data\Sales.mdf',

MOVE 'Sales_Log' TO

'F:\MSSQL11.MSSQLSERVER\MSSQL\Data\Sales.ldf';

The single node database has now been converted to a clustered highly available database and is ready for failover testing.

of

© 2017 SIOS Technology Corp., the industry's leading provider of business continuity solutions, data replication for continuous data protection.