Below is the sequence for restoring master database on a cluster instance
- Take SQL Server Service Offline from Cluster Admin
- Login to the active node of the cluster
- Start the SQL Server service in single user mode
net start "SQL Server (InstanceName)" /c /m /T3608 - Login to the instance using sqlcmd
- RESTORE master database
RESTORE DATABASE master FROM DISK = '<BackupLocation>' WITH REPLACE
- Once the master database is restored, the SQL Service will be shutdown automatically
- Start SQL Server Service from Cluster Admin
1 comment:
Where do you run the restore statement? can't connect in SMSS, 'restore' is not recognized in the command line, cannot connect sqlcmd.
Post a Comment