hi
SELECT (intBla + intFoo)/1024/1024 as USAGE from USER_TABLE;
e.g. (intBla + intFoo)/1024/1024 makes 152,8933. so i want 153. What should be the solution ? floor()? wouldn't be!?
SELECT floor((intBla + intFoo)/1024/1024) as USAGE from USER_TABLE;
BUT THIS DELIVERS ALSO 152 instead of 153. WHY? any suggestions? what da hell am i doing wrong?
thx
...