Viewing post 1 (of 1 total)
This is SQL 2000 and this is the command I used to move the Tempdb
USE master;
GO
ALTER DATABASE tempdb
MODIFY FILE (NAME = tempdev, FILENAME = 'C:\Tempdb\tempdb.mdf');
ALTER DATABASE tempdb...
August 25, 2009 at 10:26 am
#1044349