Hi Barani,
You can alculate a row size as follows:
Logical size = SUM(Bytes for fixed length columns) + SUM(Byte for Variable Lenght Columns)
Physical size = Logical Size + 14 Bytes overhead + PPI Bytes(Optional) + Compression bits(Optional) + Variable Column Offset(Optional)
Once the row size is calculated, you can calculate the size of table based on row count.
Hi Barani,
You can alculate a row size as follows:
Logical size = SUM(Bytes for fixed length columns) + SUM(Byte for Variable Lenght Columns)
Physical size = Logical Size + 14 Bytes overhead + PPI Bytes(Optional) + Compression bits(Optional) + Variable Column Offset(Optional)
Once the row size is calculated, you can calculate the size of table based on row count.