DB2 table size

Use the following calculation to identify the size of primary table update:

                       Message overhead + 
                           2 * Row size + 
      2 * Sum of length of column names + 
                  8 * Number of columns   
      ____________________________________
      = Inbound message size of the update 

Add the four numbers to obtain an estimate, in bytes, of the message size of the largest possible update.

For example, if you had a table with three columns of CHAR(10) each, and column names of 8 bytes each, the calculation is:

         200 bytes + 
         2 * 30 bytes + 
         2 * 24 bytes + 
         8 * 3
         ______________
          = 332 bytes