For each table ask yourself:
- is this row going to fit in the page?
- okay, there are x rows stored in 1 page. All I/O is page-based so I might read (and store in the bufferpool) more rows than I actually require with this specific SQL. Is this behaviour benificial for me?
if OLTP
then the answer might be NO
else the answer might be YES
end-if