I would like to make all stuff related to TempDB be stored on a separate HD.

I have this new HD with a 500 Gb size as my E:\ drive.

How would I use or move TempDB from one drive to another drive?

------------------------------EDIT---------------------------
After following the tutorial, when restarting the Server I get the message:

The request failed or the service did not respond in a timely fashion. Consult the event log or other application error logs for details.

  • I can not start it anymore, any suggestion? Does it have to do with the database path. (the location of the database such as tempdb.mdf is different than the folder 'C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA’
link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

This can be done in the server properties.

enter image description here

  1. Right click on your server instance
  2. Click "Properties"
  3. Click "Database Settings"
  4. Change "Log" to whatever path you want (including alternate HDD)

EDIT

I misunderstood the above question... I suppose I should learn to read. The above instructions show how to move the LOG DB to a different hard drive.

The instructions found HERE will show you how to move the TempDB

Open Query Analyzer and connect to your server. Run this script to get the names of the files used for TempDB.

USE TempDB
GO
EXEC sp_helpfile
GO

Results will be something like: name fileid filename filegroup size
——- —— ————————————————————– ———- ——-
tempdev 1 C:Program FilesMicrosoft SQL ServerMSSQLdatatempdb.mdf PRIMARY 16000 KB templog 2 C:Program FilesMicrosoft SQL ServerMSSQLdatatemplog.ldf NULL 1024 KB along with other information related to the database. The names of the files are usually tempdev and demplog by default. These names will be used in next statement. Run following code, to move mdf and ldf files.

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

The definition of the TempDB is changed. However, no changes are made to TempDB till SQL Server restarts. Please stop and restart SQL Server and it will create TempDB files in new locations.

link|improve this answer
@rockinthesixstring: Do this make available TempDB in the alternate HD, with no troble in re-start server? – cMinor May 7 '11 at 2:31
oops... please see my edits. – Chase Florell May 7 '11 at 2:35
I am having some trouble, I did that, and now I can not connect to server, What did I do wrong?? – cMinor May 7 '11 at 2:43
please tell me you read the instructions and didn't just copy and past the script. – Chase Florell May 7 '11 at 2:44
if so, start sql server from command line, with sqlservr -f -m; connect and re-issue the ALTER commands with a valid PATH,e.g. d:\YOUR_PATH_HERE\tempdb.mdf; if d: or e: are valid paths but read-only, i.e.DVD, that could cause a failure to start. – SqlACID May 7 '11 at 11:49
show 2 more comments
feedback

I have been looking for a good tutorial and found this and a very helpful page http://sqlzen.wordpress.com/2011/02/26/tempdb-optimization/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.