I would like to know if there's a way to find out the total number of bytes used by a specific row in SQL Server. I am able to get the maximum row size by calculating the sum for all nvarchar columns, but it creates an issue when we have a nvarchar(MAX) or binary column. I am looking for the exact no. of bytes used by a row on hard disk.
Is something like this possible?