We need to move the SQL server temp database of our SQL server cluster to new partition on the same disk. I've found some instructions that discuss moving the temp database, however I'm trying to find out whether there will be any additional issues as a
result of the change.
1. The disk resides on SAN storage, are there any additional steps required regarding MPIO?
2. Are there any steps that need to be carried out on the secondary (failover) cluster node?
(current steps identified)
USE master
GO
ALTER DATABASE TempDB MODIFY FILE
(NAME = tempdev, FILENAME = 'd:\datatempdb.mdf')
GO
ALTER DATABASE TempDB MODIFY FILE
(NAME = templog, FILENAME = 'e:\datatemplog.ldf')
GO
stop the SQL server instance
move files to the new location
restart the instance
(Environment Details)
OS: Windows Server 2008 R2
Platform: SQL Server 2008 R2
Clustering: Windows Failover Cluster Manager