Moving TempDB database on SQL 2005

When you configure your SQL server server it's important to move your TempDB databse on another disk, to do taht follow steps below: 

Use the following query:

use master ;

go

alter database tempdb modify file (name= tempdev, filename= 'target path\tempdb.mdf') ;

go ;

Repeat this command for each files linked on this DB.

Note: If you move on sql cluster, check that the target disk is include in the dependencies of the sql service.

KB Article: KB 224071.