Search results
11 wrz 2008 · Recover from a full transaction log in a SQL Server database. If your database is in Full Recovery Model and if you are not taking TL backup, then change it to SIMPLE.
18 lis 2015 · Learn how to determine SQL Server Transaction Log usage and how to remove unnecessary SQL Server transaction log files.
28 lut 2023 · Learn how to delete data or log files in SQL Server by using SQL Server Management Studio or Transact-SQL.
10 paź 2021 · Transaction Logs allow you to recover your database to any point in time (within the granularity of how often you backup the Transaction Logs). If your Transaction Logs are eating up your disk space, you may not be backing them up frequently enough (or at all, as some people don't realize they need to be backed up).
29 lip 2024 · The transaction log supports the following operations: Individual transaction recovery. Recovery of all incomplete transactions when SQL Server is started. Rolling a restored database, file, filegroup, or page forward to the point of failure. Supporting transactional replication.
After switching to simple mode, use DBCC SHRINKFILE with the EMPTYFILE parameter to shrink the extra log files (might take multiple attempts if the log files are in use, or you might have to wait for active transactions to finish).
31 sty 2020 · Drop unwanted (secondary) SQL Server transaction log files. January 31, 2020 by Rajendra Gupta. This article explores the use of multiple SQL Server Transaction Log Files and the process of removing the secondary transaction log file.