PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Forums Hébergement > Forum Hébergement serveur > ms.sqlserver.server > Ticking Clock - TempDB LDF Getting too big
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
Ticking Clock - TempDB LDF Getting too big

Réponse
 
LinkBack Outils de la discussion
Vieux 15/09/2008, 14h45   #1
Dragon
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Ticking Clock - TempDB LDF Getting too big

Hi,

We are running SQL 2000 and for some reason TempDB LDF is getting too big.
TEMPDB MDF is only about 35MB while LDF has grown to 11+GB in three days. I
have confirmed that it is growing by a few MB every few seconds. I read a
prior post with similar issue and ran the commands mentioned. Here are the
results.

use tempdb
go
DBCC OPENTRAN
*** No Open Transactions ***


DBCC INPUTBUFFER(54);
****
EventType Parameters EventInfo
-------------- ---------- ----------------------------------------------
Language Event 0 EXECUTE msdb.dbo.sp_sqlagent_get_perf_counters

Any ideas how do I go about finding out what might be causing this to grow
this quick and this large?

Thank you.


  Réponse avec citation
Vieux 15/09/2008, 14h54   #2
Uri Dimant
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Ticking Clock - TempDB LDF Getting too big

Dragon
http://sqlserver2000.databases.aspfa...happening.html




"Dragon" <nospam_baadil@hotmail.com> wrote in message
news:%23kkPgDzFJHA.4240@TK2MSFTNGP06.phx.gbl...
> Hi,
>
> We are running SQL 2000 and for some reason TempDB LDF is getting too big.
> TEMPDB MDF is only about 35MB while LDF has grown to 11+GB in three days.
> I have confirmed that it is growing by a few MB every few seconds. I read
> a prior post with similar issue and ran the commands mentioned. Here are
> the results.
>
> use tempdb
> go
> DBCC OPENTRAN
> *** No Open Transactions ***
>
>
> DBCC INPUTBUFFER(54);
> ****
> EventType Parameters EventInfo
> -------------- ---------- ----------------------------------------------
> Language Event 0 EXECUTE msdb.dbo.sp_sqlagent_get_perf_counters
>
> Any ideas how do I go about finding out what might be causing this to grow
> this quick and this large?
>
> Thank you.
>



  Réponse avec citation
Vieux 15/09/2008, 14h54   #3
Tom Moreau
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Ticking Clock - TempDB LDF Getting too big

Try running DBCC OPENTRAN in the other DB's. Keep in mind that a
transaction can span databases.

--
Tom

----------------------------------------------------
Thomas A. Moreau, BSc, PhD, MCSE, MCDBA, MCITP, MCTS
SQL Server MVP
Toronto, ON Canada
https://mvp.support.microsoft.com/profile/Tom.Moreau


"Dragon" <nospam_baadil@hotmail.com> wrote in message
news:%23kkPgDzFJHA.4240@TK2MSFTNGP06.phx.gbl...
Hi,

We are running SQL 2000 and for some reason TempDB LDF is getting too big.
TEMPDB MDF is only about 35MB while LDF has grown to 11+GB in three days. I
have confirmed that it is growing by a few MB every few seconds. I read a
prior post with similar issue and ran the commands mentioned. Here are the
results.

use tempdb
go
DBCC OPENTRAN
*** No Open Transactions ***


DBCC INPUTBUFFER(54);
****
EventType Parameters EventInfo
-------------- ---------- ----------------------------------------------
Language Event 0 EXECUTE msdb.dbo.sp_sqlagent_get_perf_counters

Any ideas how do I go about finding out what might be causing this to grow
this quick and this large?

Thank you.


  Réponse avec citation
Vieux 15/09/2008, 14h59   #4
Tibor Karaszi
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Ticking Clock - TempDB LDF Getting too big

Also, try DBCC SQLPERF(logspace) and executing the CHECKPOINT command while in tempdb to see if that
clear things up.

--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi


"Tom Moreau" <tom@dont.spam.me.cips.ca> wrote in message
news:%23d2jNJzFJHA.3408@TK2MSFTNGP04.phx.gbl...
> Try running DBCC OPENTRAN in the other DB's. Keep in mind that a
> transaction can span databases.
>
> --
> Tom
>
> ----------------------------------------------------
> Thomas A. Moreau, BSc, PhD, MCSE, MCDBA, MCITP, MCTS
> SQL Server MVP
> Toronto, ON Canada
> https://mvp.support.microsoft.com/profile/Tom.Moreau
>
>
> "Dragon" <nospam_baadil@hotmail.com> wrote in message
> news:%23kkPgDzFJHA.4240@TK2MSFTNGP06.phx.gbl...
> Hi,
>
> We are running SQL 2000 and for some reason TempDB LDF is getting too big.
> TEMPDB MDF is only about 35MB while LDF has grown to 11+GB in three days. I
> have confirmed that it is growing by a few MB every few seconds. I read a
> prior post with similar issue and ran the commands mentioned. Here are the
> results.
>
> use tempdb
> go
> DBCC OPENTRAN
> *** No Open Transactions ***
>
>
> DBCC INPUTBUFFER(54);
> ****
> EventType Parameters EventInfo
> -------------- ---------- ----------------------------------------------
> Language Event 0 EXECUTE msdb.dbo.sp_sqlagent_get_perf_counters
>
> Any ideas how do I go about finding out what might be causing this to grow
> this quick and this large?
>
> Thank you.
>
>



  Réponse avec citation
Vieux 15/09/2008, 15h05   #5
Dragon
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Ticking Clock - TempDB LDF Getting too big

Thank you Tibor.
I ran it against all of the database but no open trans.

Any other ideas?

Thanks.


"Tibor Karaszi" <tibor_please.no.email_karaszi@hotmail.nomail.co m> wrote in
message news:e%23x7TLzFJHA.2508@TK2MSFTNGP06.phx.gbl...
> Also, try DBCC SQLPERF(logspace) and executing the CHECKPOINT command
> while in tempdb to see if that clear things up.
>
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://sqlblog.com/blogs/tibor_karaszi
>
>
> "Tom Moreau" <tom@dont.spam.me.cips.ca> wrote in message
> news:%23d2jNJzFJHA.3408@TK2MSFTNGP04.phx.gbl...
>> Try running DBCC OPENTRAN in the other DB's. Keep in mind that a
>> transaction can span databases.
>>
>> --
>> Tom
>>
>> ----------------------------------------------------
>> Thomas A. Moreau, BSc, PhD, MCSE, MCDBA, MCITP, MCTS
>> SQL Server MVP
>> Toronto, ON Canada
>> https://mvp.support.microsoft.com/profile/Tom.Moreau
>>
>>
>> "Dragon" <nospam_baadil@hotmail.com> wrote in message
>> news:%23kkPgDzFJHA.4240@TK2MSFTNGP06.phx.gbl...
>> Hi,
>>
>> We are running SQL 2000 and for some reason TempDB LDF is getting too
>> big.
>> TEMPDB MDF is only about 35MB while LDF has grown to 11+GB in three days.
>> I
>> have confirmed that it is growing by a few MB every few seconds. I read a
>> prior post with similar issue and ran the commands mentioned. Here are
>> the
>> results.
>>
>> use tempdb
>> go
>> DBCC OPENTRAN
>> *** No Open Transactions ***
>>
>>
>> DBCC INPUTBUFFER(54);
>> ****
>> EventType Parameters EventInfo
>> -------------- ---------- ----------------------------------------------
>> Language Event 0 EXECUTE msdb.dbo.sp_sqlagent_get_perf_counters
>>
>> Any ideas how do I go about finding out what might be causing this to
>> grow
>> this quick and this large?
>>
>> Thank you.
>>
>>

>
>



  Réponse avec citation
Vieux 15/09/2008, 15h06   #6
Dragon
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Ticking Clock - TempDB LDF Getting too big

Thank you Uri. I will take a look at the link.


"Uri Dimant" <urid@iscar.co.il> wrote in message
news:uYWnrHzFJHA.5224@TK2MSFTNGP03.phx.gbl...
> Dragon
> http://sqlserver2000.databases.aspfa...happening.html
>
>
>
>
> "Dragon" <nospam_baadil@hotmail.com> wrote in message
> news:%23kkPgDzFJHA.4240@TK2MSFTNGP06.phx.gbl...
>> Hi,
>>
>> We are running SQL 2000 and for some reason TempDB LDF is getting too
>> big. TEMPDB MDF is only about 35MB while LDF has grown to 11+GB in three
>> days. I have confirmed that it is growing by a few MB every few seconds.
>> I read a prior post with similar issue and ran the commands mentioned.
>> Here are the results.
>>
>> use tempdb
>> go
>> DBCC OPENTRAN
>> *** No Open Transactions ***
>>
>>
>> DBCC INPUTBUFFER(54);
>> ****
>> EventType Parameters EventInfo
>> -------------- ---------- ----------------------------------------------
>> Language Event 0 EXECUTE msdb.dbo.sp_sqlagent_get_perf_counters
>>
>> Any ideas how do I go about finding out what might be causing this to
>> grow this quick and this large?
>>
>> Thank you.
>>

>
>



  Réponse avec citation
Vieux 15/09/2008, 15h22   #7
Tibor Karaszi
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Ticking Clock - TempDB LDF Getting too big

None of the commands I suggested reports open transactions. I suggested checking used space for the
log area and also that manually running the CHECKPINT command might clear things up (and if that is
the case you want to Google and possibly apply a CU/hotfix).

--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi


"Dragon" <nospam_baadil@hotmail.com> wrote in message news:upVMMPzFJHA.4460@TK2MSFTNGP02.phx.gbl...
> Thank you Tibor.
> I ran it against all of the database but no open trans.
>
> Any other ideas?
>
> Thanks.
>
>
> "Tibor Karaszi" <tibor_please.no.email_karaszi@hotmail.nomail.co m> wrote in message
> news:e%23x7TLzFJHA.2508@TK2MSFTNGP06.phx.gbl...
>> Also, try DBCC SQLPERF(logspace) and executing the CHECKPOINT command while in tempdb to see if
>> that clear things up.
>>
>> --
>> Tibor Karaszi, SQL Server MVP
>> http://www.karaszi.com/sqlserver/default.asp
>> http://sqlblog.com/blogs/tibor_karaszi
>>
>>
>> "Tom Moreau" <tom@dont.spam.me.cips.ca> wrote in message
>> news:%23d2jNJzFJHA.3408@TK2MSFTNGP04.phx.gbl...
>>> Try running DBCC OPENTRAN in the other DB's. Keep in mind that a
>>> transaction can span databases.
>>>
>>> --
>>> Tom
>>>
>>> ----------------------------------------------------
>>> Thomas A. Moreau, BSc, PhD, MCSE, MCDBA, MCITP, MCTS
>>> SQL Server MVP
>>> Toronto, ON Canada
>>> https://mvp.support.microsoft.com/profile/Tom.Moreau
>>>
>>>
>>> "Dragon" <nospam_baadil@hotmail.com> wrote in message
>>> news:%23kkPgDzFJHA.4240@TK2MSFTNGP06.phx.gbl...
>>> Hi,
>>>
>>> We are running SQL 2000 and for some reason TempDB LDF is getting too big.
>>> TEMPDB MDF is only about 35MB while LDF has grown to 11+GB in three days. I
>>> have confirmed that it is growing by a few MB every few seconds. I read a
>>> prior post with similar issue and ran the commands mentioned. Here are the
>>> results.
>>>
>>> use tempdb
>>> go
>>> DBCC OPENTRAN
>>> *** No Open Transactions ***
>>>
>>>
>>> DBCC INPUTBUFFER(54);
>>> ****
>>> EventType Parameters EventInfo
>>> -------------- ---------- ----------------------------------------------
>>> Language Event 0 EXECUTE msdb.dbo.sp_sqlagent_get_perf_counters
>>>
>>> Any ideas how do I go about finding out what might be causing this to grow
>>> this quick and this large?
>>>
>>> Thank you.
>>>
>>>

>>
>>

>
>



  Réponse avec citation
Vieux 15/09/2008, 15h40   #8
Dragon
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Ticking Clock - TempDB LDF Getting too big

Sorry Tibor. I was replying to the earlier post and I guess I mixed the
names and didn't see your names.

Anyway,
I have confirmed that checkpoint does bring the used log file to the start.
I shrunk the DB and let it auto grow by 10MB to make sure I can keep and eye
on it and by running CheckPoint I saw that I wsa able to keep the file size
from growning.

I will goodle for Checkpoint hotfix.

Thanks.


"Tibor Karaszi" <tibor_please.no.email_karaszi@hotmail.nomail.co m> wrote in
message news:%23kXtVYzFJHA.768@TK2MSFTNGP05.phx.gbl...
> None of the commands I suggested reports open transactions. I suggested
> checking used space for the log area and also that manually running the
> CHECKPINT command might clear things up (and if that is the case you want
> to Google and possibly apply a CU/hotfix).
>
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://sqlblog.com/blogs/tibor_karaszi
>
>
> "Dragon" <nospam_baadil@hotmail.com> wrote in message
> news:upVMMPzFJHA.4460@TK2MSFTNGP02.phx.gbl...
>> Thank you Tibor.
>> I ran it against all of the database but no open trans.
>>
>> Any other ideas?
>>
>> Thanks.
>>
>>
>> "Tibor Karaszi" <tibor_please.no.email_karaszi@hotmail.nomail.co m> wrote
>> in message news:e%23x7TLzFJHA.2508@TK2MSFTNGP06.phx.gbl...
>>> Also, try DBCC SQLPERF(logspace) and executing the CHECKPOINT command
>>> while in tempdb to see if that clear things up.
>>>
>>> --
>>> Tibor Karaszi, SQL Server MVP
>>> http://www.karaszi.com/sqlserver/default.asp
>>> http://sqlblog.com/blogs/tibor_karaszi
>>>
>>>
>>> "Tom Moreau" <tom@dont.spam.me.cips.ca> wrote in message
>>> news:%23d2jNJzFJHA.3408@TK2MSFTNGP04.phx.gbl...
>>>> Try running DBCC OPENTRAN in the other DB's. Keep in mind that a
>>>> transaction can span databases.
>>>>
>>>> --
>>>> Tom
>>>>
>>>> ----------------------------------------------------
>>>> Thomas A. Moreau, BSc, PhD, MCSE, MCDBA, MCITP, MCTS
>>>> SQL Server MVP
>>>> Toronto, ON Canada
>>>> https://mvp.support.microsoft.com/profile/Tom.Moreau
>>>>
>>>>
>>>> "Dragon" <nospam_baadil@hotmail.com> wrote in message
>>>> news:%23kkPgDzFJHA.4240@TK2MSFTNGP06.phx.gbl...
>>>> Hi,
>>>>
>>>> We are running SQL 2000 and for some reason TempDB LDF is getting too
>>>> big.
>>>> TEMPDB MDF is only about 35MB while LDF has grown to 11+GB in three
>>>> days. I
>>>> have confirmed that it is growing by a few MB every few seconds. I read
>>>> a
>>>> prior post with similar issue and ran the commands mentioned. Here are
>>>> the
>>>> results.
>>>>
>>>> use tempdb
>>>> go
>>>> DBCC OPENTRAN
>>>> *** No Open Transactions ***
>>>>
>>>>
>>>> DBCC INPUTBUFFER(54);
>>>> ****
>>>> EventType Parameters EventInfo
>>>> -------------- ---------- ----------------------------------------------
>>>> Language Event 0 EXECUTE
>>>> msdb.dbo.sp_sqlagent_get_perf_counters
>>>>
>>>> Any ideas how do I go about finding out what might be causing this to
>>>> grow
>>>> this quick and this large?
>>>>
>>>> Thank you.
>>>>
>>>>
>>>
>>>

>>
>>

>
>



  Réponse avec citation
Vieux 16/09/2008, 11h24   #9
Tibor Karaszi
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Ticking Clock - TempDB LDF Getting too big

Cool, seems you have found the issue. I vaguely recall this problem and there's a hotfix available.
Hopefully you'll find such.

--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi


"Dragon" <nospam_baadil@hotmail.com> wrote in message news:Owk0UizFJHA.5448@TK2MSFTNGP04.phx.gbl...
> Sorry Tibor. I was replying to the earlier post and I guess I mixed the names and didn't see your
> names.
>
> Anyway,
> I have confirmed that checkpoint does bring the used log file to the start. I shrunk the DB and
> let it auto grow by 10MB to make sure I can keep and eye on it and by running CheckPoint I saw
> that I wsa able to keep the file size from growning.
>
> I will goodle for Checkpoint hotfix.
>
> Thanks.
>
>
> "Tibor Karaszi" <tibor_please.no.email_karaszi@hotmail.nomail.co m> wrote in message
> news:%23kXtVYzFJHA.768@TK2MSFTNGP05.phx.gbl...
>> None of the commands I suggested reports open transactions. I suggested checking used space for
>> the log area and also that manually running the CHECKPINT command might clear things up (and if
>> that is the case you want to Google and possibly apply a CU/hotfix).
>>
>> --
>> Tibor Karaszi, SQL Server MVP
>> http://www.karaszi.com/sqlserver/default.asp
>> http://sqlblog.com/blogs/tibor_karaszi
>>
>>
>> "Dragon" <nospam_baadil@hotmail.com> wrote in message
>> news:upVMMPzFJHA.4460@TK2MSFTNGP02.phx.gbl...
>>> Thank you Tibor.
>>> I ran it against all of the database but no open trans.
>>>
>>> Any other ideas?
>>>
>>> Thanks.
>>>
>>>
>>> "Tibor Karaszi" <tibor_please.no.email_karaszi@hotmail.nomail.co m> wrote in message
>>> news:e%23x7TLzFJHA.2508@TK2MSFTNGP06.phx.gbl...
>>>> Also, try DBCC SQLPERF(logspace) and executing the CHECKPOINT command while in tempdb to see if
>>>> that clear things up.
>>>>
>>>> --
>>>> Tibor Karaszi, SQL Server MVP
>>>> http://www.karaszi.com/sqlserver/default.asp
>>>> http://sqlblog.com/blogs/tibor_karaszi
>>>>
>>>>
>>>> "Tom Moreau" <tom@dont.spam.me.cips.ca> wrote in message
>>>> news:%23d2jNJzFJHA.3408@TK2MSFTNGP04.phx.gbl...
>>>>> Try running DBCC OPENTRAN in the other DB's. Keep in mind that a
>>>>> transaction can span databases.
>>>>>
>>>>> --
>>>>> Tom
>>>>>
>>>>> ----------------------------------------------------
>>>>> Thomas A. Moreau, BSc, PhD, MCSE, MCDBA, MCITP, MCTS
>>>>> SQL Server MVP
>>>>> Toronto, ON Canada
>>>>> https://mvp.support.microsoft.com/profile/Tom.Moreau
>>>>>
>>>>>
>>>>> "Dragon" <nospam_baadil@hotmail.com> wrote in message
>>>>> news:%23kkPgDzFJHA.4240@TK2MSFTNGP06.phx.gbl...
>>>>> Hi,
>>>>>
>>>>> We are running SQL 2000 and for some reason TempDB LDF is getting too big.
>>>>> TEMPDB MDF is only about 35MB while LDF has grown to 11+GB in three days. I
>>>>> have confirmed that it is growing by a few MB every few seconds. I read a
>>>>> prior post with similar issue and ran the commands mentioned. Here are the
>>>>> results.
>>>>>
>>>>> use tempdb
>>>>> go
>>>>> DBCC OPENTRAN
>>>>> *** No Open Transactions ***
>>>>>
>>>>>
>>>>> DBCC INPUTBUFFER(54);
>>>>> ****
>>>>> EventType Parameters EventInfo
>>>>> -------------- ---------- ----------------------------------------------
>>>>> Language Event 0 EXECUTE msdb.dbo.sp_sqlagent_get_perf_counters
>>>>>
>>>>> Any ideas how do I go about finding out what might be causing this to grow
>>>>> this quick and this large?
>>>>>
>>>>> Thank you.
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



  Réponse avec citation
Vieux 16/09/2008, 14h25   #10
Dragon
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Ticking Clock - TempDB LDF Getting too big

Yes Tibor I got it. Thank you for .

Until we apply the hotfix, I created a SQL Job to simply run the checkpoint
every minute. It takes only 15ms and keeps my TempDB happy. Server resources
are not taxed anyway.


"Tibor Karaszi" <tibor_please.no.email_karaszi@hotmail.nomail.co m> wrote in
message news:ezUlU49FJHA.2112@TK2MSFTNGP02.phx.gbl...
> Cool, seems you have found the issue. I vaguely recall this problem and
> there's a hotfix available. Hopefully you'll find such.
>
> --
> Tibor Karaszi, SQL Server MVP
> http://www.karaszi.com/sqlserver/default.asp
> http://sqlblog.com/blogs/tibor_karaszi
>
>
> "Dragon" <nospam_baadil@hotmail.com> wrote in message
> news:Owk0UizFJHA.5448@TK2MSFTNGP04.phx.gbl...
>> Sorry Tibor. I was replying to the earlier post and I guess I mixed the
>> names and didn't see your names.
>>
>> Anyway,
>> I have confirmed that checkpoint does bring the used log file to the
>> start. I shrunk the DB and let it auto grow by 10MB to make sure I can
>> keep and eye on it and by running CheckPoint I saw that I wsa able to
>> keep the file size from growning.
>>
>> I will goodle for Checkpoint hotfix.
>>
>> Thanks.
>>
>>
>> "Tibor Karaszi" <tibor_please.no.email_karaszi@hotmail.nomail.co m> wrote
>> in message news:%23kXtVYzFJHA.768@TK2MSFTNGP05.phx.gbl...
>>> None of the commands I suggested reports open transactions. I suggested
>>> checking used space for the log area and also that manually running the
>>> CHECKPINT command might clear things up (and if that is the case you
>>> want to Google and possibly apply a CU/hotfix).
>>>
>>> --
>>> Tibor Karaszi, SQL Server MVP
>>> http://www.karaszi.com/sqlserver/default.asp
>>> http://sqlblog.com/blogs/tibor_karaszi
>>>
>>>
>>> "Dragon" <nospam_baadil@hotmail.com> wrote in message
>>> news:upVMMPzFJHA.4460@TK2MSFTNGP02.phx.gbl...
>>>> Thank you Tibor.
>>>> I ran it against all of the database but no open trans.
>>>>
>>>> Any other ideas?
>>>>
>>>> Thanks.
>>>>
>>>>
>>>> "Tibor Karaszi" <tibor_please.no.email_karaszi@hotmail.nomail.co m>
>>>> wrote in message news:e%23x7TLzFJHA.2508@TK2MSFTNGP06.phx.gbl...
>>>>> Also, try DBCC SQLPERF(logspace) and executing the CHECKPOINT command
>>>>> while in tempdb to see if that clear things up.
>>>>>
>>>>> --
>>>>> Tibor Karaszi, SQL Server MVP
>>>>> http://www.karaszi.com/sqlserver/default.asp
>>>>> http://sqlblog.com/blogs/tibor_karaszi
>>>>>
>>>>>
>>>>> "Tom Moreau" <tom@dont.spam.me.cips.ca> wrote in message
>>>>> news:%23d2jNJzFJHA.3408@TK2MSFTNGP04.phx.gbl...
>>>>>> Try running DBCC OPENTRAN in the other DB's. Keep in mind that a
>>>>>> transaction can span databases.
>>>>>>
>>>>>> --
>>>>>> Tom
>>>>>>
>>>>>> ----------------------------------------------------
>>>>>> Thomas A. Moreau, BSc, PhD, MCSE, MCDBA, MCITP, MCTS
>>>>>> SQL Server MVP
>>>>>> Toronto, ON Canada
>>>>>> https://mvp.support.microsoft.com/profile/Tom.Moreau
>>>>>>
>>>>>>
>>>>>> "Dragon" <nospam_baadil@hotmail.com> wrote in message
>>>>>> news:%23kkPgDzFJHA.4240@TK2MSFTNGP06.phx.gbl...
>>>>>> Hi,
>>>>>>
>>>>>> We are running SQL 2000 and for some reason TempDB LDF is getting too
>>>>>> big.
>>>>>> TEMPDB MDF is only about 35MB while LDF has grown to 11+GB in three
>>>>>> days. I
>>>>>> have confirmed that it is growing by a few MB every few seconds. I
>>>>>> read a
>>>>>> prior post with similar issue and ran the commands mentioned. Here
>>>>>> are the
>>>>>> results.
>>>>>>
>>>>>> use tempdb
>>>>>> go
>>>>>> DBCC OPENTRAN
>>>>>> *** No Open Transactions ***
>>>>>>
>>>>>>
>>>>>> DBCC INPUTBUFFER(54);
>>>>>> ****
>>>>>> EventType Parameters EventInfo
>>>>>> -------------- ---------- ----------------------------------------------
>>>>>> Language Event 0 EXECUTE
>>>>>> msdb.dbo.sp_sqlagent_get_perf_counters
>>>>>>
>>>>>> Any ideas how do I go about finding out what might be causing this to
>>>>>> grow
>>>>>> this quick and this large?
>>>>>>
>>>>>> Thank you.
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 07h42.


Édité par : vBulletin® version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières ©2000-2008
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,25154 seconds with 18 queries