1) Looking in original post, many updates were done.
Quote:
Update/Insert/Delete statements executed = 34813596
Rows updated = 34812086
|
Although, the average length of log records(or row length) was not clear,
if assumed 100 byte for average length of log record,
total bytes logged would be about 7Gbyte(34.8M * 2 * 100).
So, I thought that logged 10Gbyte was not so unusually big.
2)
Quote:
Commit statements attempted = 52232355
Select SQL statements executed = 17419349
Update/Insert/Delete statements executed = 34813596
Rows deleted = 496
Rows inserted = 497
Rows updated = 34812086
Rows selected = 17500725
|
Compared those numbers, simple proportions could be seen.
(Commit stmts) : (Select stmts) : (U/I/D stmts) = 3 : 1 : 2
(Select stmts) : (Rows selected) = 1 : 1
(U/I/D stmts) : (Rows updated) = 1 : 1
These simple proportional relations made me thought of repeatedly execution of specific programs/transactions.