up vote 0 down vote favorite
share [g+] share [fb]

I have a SQL Server 2005 sp2 box where tempdb has either 8 data files or 5 data files dependingo n where you look. DBCC showfilestates and sys.database_files (both queried in tempdb) show 8 data files (tempdev - tempdev8), however when I query sys.master_files (in master db, which is also what the GUI uses), I only see 5 (tempdev, tempdev5 - tempdev8). I cannot add a tempdev2 - tempdev4 as I get an error that it already exists and I can't restart the SQL Server anytime soon to recreate tempdb.

Anyone know: 1.) how this can happen? 2.) more importantly, how I can correct it?

Thanks,

link|improve this question
feedback

3 Answers

It's possible that one view is showing outdated information. One scenario is that those files were dropped from tempdb but SQL Server has not been restarted to delete those files our their entries from some of the system catalog. And you can't add new ones until the old ones are really gone. Anything destructive you do to tempdb (moving, dropping files, etc.) usually requires a restart of SQL Server.

My guess is they are showing two different states of the system and will reconcile one the instance restarts.

link|improve this answer
feedback

The first question I have to ask is, why are you messing with tempdb? Are you experiencing bottlenecks because of tempdb?

link|improve this answer
We have been experiencing some contention and were going through some best practice excercises to test load on a server and according to msdn.microsoft.com/en-us/library/ms175527.aspx : "As a general guideline, create one data file for each CPU on the server." – Vendoran Oct 22 '08 at 21:34
feedback

If you look on disk in the appropriate directory, how many files do you see?

link|improve this answer
I saw all 8 physical files – Vendoran Nov 16 '08 at 2:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.