In the scenario from Tables 4-4, 4-5, and 4-6, how much space does the Payables table take?
(The int data type is 4 bytes; datetime, money, and float are 8 bytes; and char(50) is 50 bytes. Therefore, the size of the columns added together is 4 + 4 + 8 + 8 + 50 + 8 = 82 bytes. The null bitmap is 2 + ((6 + 7) ÷ 8) = 3.625, or 3 bytes. The total row size is 82 + 3 = 85 bytes. Each page holds 8,096 ÷ (85 + 2) = 93 rows per page. The total number of pages in the database is 2,500 ÷ 93 = 27 pages. Each page is 8,192 bytes. Therefore, the table takes 221,184 bytes, or about 216 KB.)