|
hi team, today i have execute DBCC CHECKDB, on one of my DB, but i was continously getting this
(comments are locked)
|
|
How big is the tempdb log? Have you left the default options on (autogrow 10%), or have you changed them? How big is the disk that this log file resides on? How much space is left on the disk? What is the value of thanks this worked so
Nov 18 '10 at 09:05 PM
ramesh 1
(comments are locked)
|
|
It is telling you that the tempdb has no space in its log file. Something on your server has used it all up. You have several options:
(comments are locked)
|
|
Ramesh - the error speaks for itself. Your tempdb log file is full. DBCC CHECKDB does a lot of work and uses tempdb to do it. If you are checking a large database/table/index then this can cause tempdb to grow. I suggest you take a look at the autogrowth settings for tempdb, also check the drive tempdb is on - is it full? Also check what recovery mode is running for tempdb - simple should be fine to use here. As stated in the error the following queery will give you some idea as to what is wrong: When you cycle the instance (restart sql server) tempdb should be shrunk back to the initial size that is set in the database settings.
(comments are locked)
|

