Posted May 4, 2009 The TiB in ApexDC++ seems to be using a wrong formula http://en.wikipedia.org/wiki/Kibibyte it should calculate using 1024 but seems to be using 1000 Why? example: SELECT (SUM(sharesize)/1000/1000/1000/1000) AS sharesize FROM nickstats WHERE online = 'y'; 27.52 TiB. (shown in ApexDC++) SELECT (SUM(sharesize)/1024/1024/1024/1024) AS sharesize FROM nickstats WHERE online = 'y'; 25.03 TiB. (should be shown (1024)) Share this post Link to post Share on other sites