Thanks for the answer mark, here's an example with a table create and some values.
create table TEST
(
size1 int
)
insert into test values (1)
insert into test values (2)
insert into test values (50)
select sum(cast(size1 as bigint)*100) as DBSize from TEST