Viewing 15 posts - 1 through 15 (of 15 total)
Brandie Tarvin (5/16/2013)
May 16, 2013 at 12:42 pm
I just increased it (tempdb) to 200MB data and 100MB log. I'll see if it grows upward from there.
May 16, 2013 at 10:32 am
f242337 (5/15/2013)
My tempdb data has 19MB allocated of which 13MB is free, and its log has 5MB allocated of which 2MB is free.
DBCC LOGINFO shows it has 18 VLFs...
May 16, 2013 at 8:26 am
SQL2012SP1CU3 doesn't help. Actually it makes it much worse - now the databases fail recovery (b/c a checkpoint cannot be written, b/c the transaction logs are full) and cannot be...
May 15, 2013 at 2:18 pm
Tommy Bollhofer (5/15/2013)
You may also want to take a look at this thread on SSC -http://www.sqlservercentral.com/Forums/Topic708053-146-1.aspx
Interesting.
checking mine:
select * from sys.sysprocesses where lastwaittype like '%LOG%' or lastwaittype like '%CHECKPOINT%' or...
May 15, 2013 at 10:45 am
I've considered recreating the entire database, because I can successfully pull all the data out via Import/Export Wizard's SSIS. In fact I have a couple copies of the database data...
May 15, 2013 at 10:23 am
re: TEMPDB
My tempdb data has 19MB allocated of which 13MB is free, and its log has 5MB allocated of which 2MB is free.
DBCC LOGINFO shows it has 18 VLFs of...
May 15, 2013 at 10:17 am
I suspect everything is hung up on figuring out how to accomplish a checkpoint. I don't understand, fundamentally, why I can't add a new log or grow an existing one....
May 15, 2013 at 10:13 am
re: SQL2012SP1CU2 & stuck transaction log KB: http://support.microsoft.com/kb/2509302
I considered that, but
#1) That KB says it is for databases in Full Recovery Model
#2) It says it occurs as...
May 15, 2013 at 10:07 am
Looking at
SELECT * FROM sys.dm_exec_requests where command like '%LOG%' or command like '%CHECKPOINT%' or wait_type like '%LOG%'
I see a CHECKPOINT command with a wait_type of LOGMGR_RESERVE_APPEND,...
May 14, 2013 at 3:33 pm
Tommy Bollhofer (5/14/2013)
Is it possible there are any uncommitted distributed transactions?
I ran "DBCC OPENTRAN" and got an empty response (detailed in post above). 🙁
Is there something else possibly worth...
May 14, 2013 at 3:25 pm
One more note. DBCC CHECKDB doesn't report any specific errors, but it cannot create a checkpoint record (because the log is out of space...), and it cannot create a snapshot...
May 13, 2013 at 11:14 am
Note: SQL2012SP1. I have not applied CU2. This fix in CU2 sounds similar, but it says it is only for FULL recovery model.
May 13, 2013 at 11:11 am
I have what at least superfically seems similar.
Summary: I have a simple model database which is stuck due to an overfull transaction log - can't add more log space or...
May 13, 2013 at 11:06 am
It sounds like your database server is not in a domain -- thus, it only offers you the one choice for login, that one choice being its local SAM. ...
May 11, 2013 at 3:19 pm
Viewing 15 posts - 1 through 15 (of 15 total)