http://exchange.braintapper.com/listing/tag/tempdb/atom2012-05-21T13:05:45.000-05:00Braintapper Exchange - Feed for tag: tempdbSteven Nghttp://exchange.braintapper.com/sql-server-moving-the-tempdb2010-03-24T11:29:49.000-05:002010-03-24T11:29:49.000-05:00Code Snippet: SQL Server: Moving the tempdb<p>If you need to move the tempdb to another drive in SQL Server, use this SQL:</p>
<pre class="prettyprint"><code>use master
go
Alter database tempdb modify file (name = tempdev, filename = 'E:\Sqldata\tempdb.mdf')
go
Alter database tempdb modify file (name = templog, filename = 'E:\Sqldata\templog.ldf')
Go
</code></pre>
<p>Don't forget to modify the paths according to your own server paths.</p>
slantyyz