1: Why did you turn off autogrow for this operationsmanagerDW database? Generally not a good advice, unless you are very much on top of all your database, monitor them and grow them well before they become full.2: So you manually try to grow this database. Apparently you are being locked by something.
I would start to.not. use the GUI to grow the database, since the GUI apparently did set a locktimeout and the grow took longer time than the lock timeout setting.You can configure how you want to grow using the GUI and then script the SQL commands. Now you have them in a query window, and there are fewer unknowns in a query window.
So, try now to execute the relevant ALTER DATABASE. MODIFY FILE command from thequery window and see if that work.And, judging by this thread, I would have some experienced SQL Server DBA look over this SQL Server and make sure that there's nothing strange that lingers.Tibor Karaszi, SQL Server MVP. SQL Server uses the Model Database as a template for creating new databases; and as tempDb is recreated everytime SQL Server is restarted this means that SQL Server will use the Model database template to recreate tempdb.Therefore the first thing you need to do is to alter the file autogrowth settings on the Model database; you can do this at anytime with no impact on service delivery. The other thing you need to do is determine a safe date and time to restartSQL Server and then restart SQL Server.Please click 'Mark As Answer' if my post helped. Yes to both of you and there is more than 1TB in free spaceThis message can also com if autogrowth of Tempdb is taking long time this is not documented but I have observed this. What you should do here is change autogrowth to 300 MB(this is just a vague value).Now what is the Tempdb size of both data and log file?
Please give us complete information. How many tempdb data files you have?Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it. OK, i see where to disable/enable autogrowth.
So i did that on the model DB. However, i can not do anything with the tempDB. This is the error when using alter database or right click on the DB and then files:ForgivenPlease refer to my post further up this chain.Please click 'Mark As Answer' if my post helped. Tony C.Anthony, if you are referring to autogrow on the model DB, i did that and responded that i did a few posts up. If that is what you are referring to, what next?I'm sorry, in a panic i did not completely read your post.
I am rebooting the SQL server now. OK, i see where to disable/enable autogrowth. So i did that on the model DB. However, i can not do anything with the tempDB. This is the error when using alter database or right click on the DB and then files:ForgivenPlease refer to my post further up this chain.Please click 'Mark As Answer' if my post helped. Tony C.Anthony, if you are referring to autogrow on the model DB, i did that and responded that i did a few posts up. If that is what you are referring to, what next?I'm sorry, in a panic i did not completely read your post.
I am rebooting the SQL server nowThat's the other action you need to do; restarting the Server or SQL Server will force tempdb to be recreated.Please click 'Mark As Answer' if my post helped. OkWhereabouts are the tempdb mdf and ldf files located? Check the volumes on the Server to see if any of them are full.
Have you restricted the sizes of the files or are they set to unlimited?Please click 'Mark As Answer' if my post helped. Tony C.The files are located on a storage enclosure.
There is over 1TB on that drive of free space. In regards to ' Haveyou restricted the sizes of the files or are they set to unlimited?' Are you talking about autogrow?Here is the result of the code you posted:Could not write a checkpoint record in database tempdb because the log is out of space. Contact the database administrator to truncate the log or allocate more space to the database log files.Msg 5901, Level 16, State 1, Line 3One or more recovery units belonging to database 'tempdb' failed to generate a checkpoint. This is typically caused by lack of system resources such as disk or memory, or in some cases due to database corruption. Examine previous entries in the error log formore detailed information on this failure.Msg 9002, Level 17, State 1, Line 3The transaction log for database 'tempdb' is full due to 'CHECKPOINT'.DBCC execution completed. If DBCC printed error messages, contact your system administrator.DBCC execution completed.
If DBCC printed error messages, contact your system administrator.DBCC execution completed. If DBCC printed error messages, contact your system administrator.DBCC execution completed.
If DBCC printed error messages, contact your system administrator.Msg 0, Level 11, State 0, Line 12A severe error occurred on the current command. The results, if any, should be discarded.Cannot shrink file '2' in database 'tempdb' to 12800 pages as it only contains 64 pages.(1 row(s) affected)DBCC execution completed. If DBCC printed error messages, contact your system administrator. OkWhereabouts are the tempdb mdf and ldf files located?
Check the volumes on the Server to see if any of them are full. Have you restricted the sizes of the files or are they set to unlimited?Please click 'Mark As Answer' if my post helped. Tony C.The files are located on a storage enclosure. There is over 1TB on that drive of free space. In regards to ' Haveyou restricted the sizes of the files or are they set to unlimited?'
Are you talking about autogrow?Here is the result of the code you posted:Could not write a checkpoint record in database tempdb because the log is out of space. Contact the database administrator to truncate the log or allocate more space to the database log files.Msg 5901, Level 16, State 1, Line 3One or more recovery units belonging to database 'tempdb' failed to generate a checkpoint. This is typically caused by lack of system resources such as disk or memory, or in some cases due to database corruption.
Examine previous entries in the error log formore detailed information on this failure.Msg 9002, Level 17, State 1, Line 3The transaction log for database 'tempdb' is full due to 'CHECKPOINT'.DBCC execution completed. If DBCC printed error messages, contact your system administrator.DBCC execution completed. If DBCC printed error messages, contact your system administrator.DBCC execution completed. If DBCC printed error messages, contact your system administrator.DBCC execution completed. If DBCC printed error messages, contact your system administrator.Msg 0, Level 11, State 0, Line 12A severe error occurred on the current command. The results, if any, should be discarded.Cannot shrink file '2' in database 'tempdb' to 12800 pages as it only contains 64 pages.(1 row(s) affected)DBCC execution completed.
If DBCC printed error messages, contact your system administrator.This is looking like an issue with the storage. What are the sizes of the tempdb files at the moment?Please click 'Mark As Answer' if my post helped.