About 75,300 results
Open links in new tab
  1. How do you clear the SQL Server transaction log?

    Sep 11, 2008 · Actually, log files are those file data which the SQL server keeps when an transaction has taken place. For a transaction to process SQL server allocates pages for the …

  2. sql server - My log file is too large - Stack Overflow

    Jan 30, 2009 · My log file in SQL Server used up all the space on my disk. I run full backups every night, but the log file keeps growing. What can I do?

  3. How do I decrease the size of my sql server log file? [closed]

    You have to shrink & backup the log a several times to get the log file to reduce in size, this is because the the log file pages cannot be re-organized as data files pages can be, only truncated.

  4. What is the command to truncate a SQL Server log file?

    Sep 2, 2008 · I need to empty an LDF file before sending to a colleague. How do I force SQL Server to truncate the log?

  5. sql server - DBCC SHRINKFILE on log file not reducing size even …

    To get around this do another transaction log backup, and immediately run these commands, supplying the file_id found above, and the size you would like your log file to be reduced to.

  6. sql server - Why can't I shrink a transaction log file, even after ...

    Apr 23, 2009 · I have a database that has a 28gig transaction log file. Recovery mode is simple. I just took a full backup of the database, and then ran both: backup log dbmcms with …

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

    You can't shrink the log file while a long running process - that is holding open a transaction - is in progress. That process was solely responsible for the file growth.

  8. How Can I Manage SQL Server Log Size - Stack Overflow

    Jan 26, 2009 · I'm trying to manage the size of a SQL Server 2008 log file. I have a reporting database that is loaded once a day. The Simple recovery model is the best fit as there are no …

  9. Huge transaction log with SQL Server database in simple recovery …

    Nov 19, 2009 · For some reason the transaction log for this database is massive (410 GB) with 99% of the space unallocated. I've tried to shrink the file using ( DBCC SHRINKFILE …

  10. Log file is growing with Simple Recovery mode - Stack Overflow

    Jul 26, 2016 · SQL Server writes to the Log file in all recovery modes, the only difference is In simple recovery mode it automatically reclaims the log space (when it can) and also logs …