I am trying to calculate how much space (MB) it will take. The database table has 7 bit columns, 2 tiny ints and 1 guid.
Trying to calculate the amount that will occupy 16,000 lines.
My thought was that 7-bit columns consume 1 byte, 2 tiny ints consume 2 bytes, and guid consumes 16 bytes. Only 19 bytes per row in the table? That would mean 304,000 bytes for 16,000 lines or ~ 0.3mbs of us, what is right? Is there a metadata byte?
source share