http://exchange.braintapper.com/listing/tag/tempdb/atom 2012-05-21T13:05:45.000-05:00 Braintapper Exchange - Feed for tag: tempdb Steven Ng http://exchange.braintapper.com/sql-server-moving-the-tempdb 2010-03-24T11:29:49.000-05:00 2010-03-24T11:29:49.000-05:00 Code 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