About 102,000 results
Open links in new tab
  1. Transaction log grows due to long-running transactions and CDC - SQL

    Jul 20, 2023 · This article helps you to monitor and identify the issue of continuous transaction log growth caused by long-running transactions in a database with Change Data Capture (CDC) …

  2. audit logging - How to get all the transaction logs (insert update ...

    Jan 29, 2014 · The only way to do this in a reasonable amount of time is to use a third party tool (as Martin said in first comment) such as ApexSQL Log that can read transaction log and get …

  3. How do you clear the SQL Server transaction log?

    Sep 11, 2008 · ANY time you move data around in a SQL Server database, you'll require logging - bloating the log file. To decrease log size, either set the DB to Simple Recovery OR (if you …

  4. What does a database log keep track of? - Stack Overflow

    Feb 16, 2010 · In general, a SQL Server DB in "Simple" mode will wrap around its log file if it can. It will typically grow when it must and then only shrink if autoshrink is enabled (bad) or you …

  5. SQL Transaction log grows continuously - SQL Server

    Jun 18, 2025 · This article helps you resolve the problem where you notice continuous transaction log growth for a CDC enabled database.

  6. logging - Where are SQL Server connection attempts logged

    Jul 20, 2011 · In SQL Server Management Studio, open SQL Server Properties > Security > Login Auditing select "Both failed and successful logins". Make sure to restart the SQL Server …

  7. Huge transaction log with SQL Server database in simple

    Nov 19, 2009 · The transaction will be active and force the log to grow until is eventually committed or rolled back. When the transaction eventually ends the used space can finally be …

  8. SQL Server Log File Rapidly Growing - Microsoft Q&A

    Sep 29, 2023 · This article helps you to monitor and identify the issue of continuous transaction log growth caused by long-running transactions in a database with Change Data Capture …

  9. sql - The transaction log for the database is full - Stack Overflow

    If your database recovery model is full and you didn't have a log backup maintenance plan, you will get this error because the transaction log becomes full due to LOG_BACKUP.

  10. Read SQL Server transaction log - Stack Overflow

    Jan 26, 2012 · Following are the examples of viewing LDF file content using SQL Server functions and commands: 1 - Here is an example using fn_dblog to read an online transaction log, with …