Steffi1013
MIS
I have moved tempdb by running the following statement:
ALTER DATABASE tempdb
MODIFY FILE (NAME = tempdev8, FILENAME = 'T:\MSSQL\DATA\tempdev8.mdf');
GO
Then I restarted SQL Server and ran the following:
SELECT name, physical_name AS CurrentLocation
FROM sys.master_files
WHERE database_id = DB_ID(N'tempdb');
GO
Which shows that that tempdev8 is located at:
T:\MSSQL\DATA\tempdev8.mdf
BUT... when I go into Management Studio and look at the properties on tempdb, you do NOT see that file listed there! Also, when you run sp_helpdb 'tempdb', it does NOT show that file either.
What must I do for Managment Studio and sp_helpdb to show all the files??
Thanks!
ALTER DATABASE tempdb
MODIFY FILE (NAME = tempdev8, FILENAME = 'T:\MSSQL\DATA\tempdev8.mdf');
GO
Then I restarted SQL Server and ran the following:
SELECT name, physical_name AS CurrentLocation
FROM sys.master_files
WHERE database_id = DB_ID(N'tempdb');
GO
Which shows that that tempdev8 is located at:
T:\MSSQL\DATA\tempdev8.mdf
BUT... when I go into Management Studio and look at the properties on tempdb, you do NOT see that file listed there! Also, when you run sp_helpdb 'tempdb', it does NOT show that file either.
What must I do for Managment Studio and sp_helpdb to show all the files??
Thanks!