Table Volume Sum of Values Method

Obtain a precise calculation of data volume by adding together all of the volumes for each message type.

To calculate InboundTableVolume:
InboundTableVolume = 
     (InboundMsgSizeupdate * ChangeRateupdate) +
     (InboundMsgSizeinsert * ChangeRateinsert) +
     (InboundMsgSizedelete * ChangeRatedelete) +
     (InboundMsgSizefunction1 * ChangeRatefunction1) +
     (InboundMsgSizefunction2 * ChangeRatefunction2) + 
     ...
To calculate OutboundTableVolume:
OutboundTableVolume =
     (OutboundMsgSizeupdate * ChangeRateupdate) +
     (OutboundMsgSizeinsert * ChangeRateinsert) +
     (OutboundMsgSizedelete * ChangeRatedelete) +
     (OutboundMsgSizefunction1 * ChangeRatefunction1) +
     (OutboundMsgSizefunction2 * ChangeRatefunction2) +
     ...
where:
  • ChangeRate is the maximum number of modifications to the table per time period. ChangeRate update refers to data updates, ChangeRate insert refers to data insertions, and so forth.

  • InboundMsgSize and OutboundMsgSize are the different types of maximum inbound and outbound message sizes.

Related reference
Message Sizes