1 items found with tag: tempdb RSSATOM
0 votes
If you need to move the tempdb to another drive in SQL Server, use this SQL: 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 Don't forget to modify the paths according to your own server paths.