Re: why does my transaction log fill very fast?
From: Dan Guzman (guzmanda_at_nospam-online.sbcglobal.net)
Date: 11/17/05
- Next message: Stefan Berglund: "Re: why does my transaction log fill very fast?"
- Previous message: Gary D. Rezek: "Could not obtain information"
- Next in thread: Stefan Berglund: "Re: why does my transaction log fill very fast?"
- Reply: Stefan Berglund: "Re: why does my transaction log fill very fast?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Thu, 17 Nov 2005 06:11:42 -0600
Cross-posting to microsoft.public.sqlserver.server.
All database changes are written to the transaction log. The before/after
image of each row is the stored for fully-logged statements like INSERT,
UPDATE, DELETE. With minimally-logged operations like TRUNCATE TABLE, only
allocation information for the affected extents are recorded.
It is unusual for a web application to require a large transaction log since
OLTP apps generally consist of relatively small transactions. This might
indicate an application problem such as inadvertently modifying more data
than intended or long-running transactions.
-- Hope this helps. Dan Guzman SQL Server MVP "Manish Sukhija" <ManishSukhija@discussions.microsoft.com> wrote in message news:DDC47FD3-602B-4DC1-8253-523807C71DEA@microsoft.com... > Hi All, > one of my web application fills its transaction log very fast, as > database is on live server and some other company takes care of it's > database, so i'm not able to shrink it's log. According to them, > transaction > log is to be truncate several time in a day automatically. now i don't > understand how this transaction log fills so much fast? any idea?
- Next message: Stefan Berglund: "Re: why does my transaction log fill very fast?"
- Previous message: Gary D. Rezek: "Could not obtain information"
- Next in thread: Stefan Berglund: "Re: why does my transaction log fill very fast?"
- Reply: Stefan Berglund: "Re: why does my transaction log fill very fast?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|