Questions tagged [transaction-log]

transaction log is a log file of all actions performed on a database. It helps keep consistency and recover from unexpected failures.

The Transaction Log is a log file that keeps an audit trail of all actions performed on a database. This allows the database system to recover from unexpected shutdowns like power failures. Usually, the system will roll back changes made by uncommitted transactions and re-apply any committed transaction that did not make it to the database. This is done to keep ensure the atomicity and durability of transactions.

The transaction log can also be used to recover accidentally changed or deleted data.

197 questions
-2
votes
1 answer

Update Query Transaction Log

How can I find out what triggers are fired and what sql functions (system+user) are called or what views are updated and what all tables got updated when i fire a update query in ssms? Basically, I need an information about what all happened in the…
Rahul Dev
  • 141
  • 2
  • 17
-4
votes
1 answer

SQL Transaction log

How do I get rid of this massive (110GB) LDF file? I have changed the recovery method to simple, we will never want to restore to a specific point in time so we do not need the full method. The LDF file is still there! I have done a backup of the…
Nibbo
  • 17
  • 4
1 2 3
13
14