Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ranvir_2k
Posting Yak Master
180 Posts |
Posted - 2014-07-25 : 10:18:37
|
Hi all,What does the transaction log actually contain?Is it each individual data row that is inserted/modified?Or the command that modified the data?I'm guessing it's the formerThanks |
|
MichaelJSQL
Constraint Violating Yak Guru
252 Posts |
|
jackv
Master Smack Fu Yak Hacker
2179 Posts |
Posted - 2014-07-26 : 03:04:39
|
According to SQL Server BOL;supplied the SQL Server Books Online :1) The start and end of each transaction2) Every data modification (insert, update, or delete). This includes changes by system stored procedures or data definition language (DDL) statements to any table, including system tables.3) Every extent and page allocation or deallocation.4) Creating or dropping a table or index5) Rollback operations6) Transaction SIDAlso , check:http://www.sqlserver-dba.com/2012/12/sql-server-inside-the-sql-transaction-logs-with-fn_dblog-and-current-transaction_id.htmlJack Vamvas--------------------http://www.sqlserver-dba.com |
|
|
|
|
|