HI,
I want to know whether the server uses rowsize*noofrows or the actual size of the row(actual data stored in the row,some columns contain data less than their declared values, like char columns) multiplied by no of rows for calculating Long transactions.
Example
I have a table
Table1 (x char(10),y char(20),z integer).
I insert the rows
Table1("123","345",123)
The rowsize of the table is 30+integersize bytes
But the actual rowsize is 3+3+integer bytes.
Does the server use the former or the later calculation for Long transactions.
bye