scientific notation, with one byte used to store the exponent and up to 20
bytes to store the mantissa. The resulting value is limited to 38 digits of
precision. Oracle does not store leading and trailing zeros. For example, the
number 412 is stored in a format similar to 4.12 x 102, with one byte used to
store the exponent (2) and two bytes used to store the three significant digits
of the mantissa (4, 1, 2). Negative numbers include the sign in their length.
Taking this into account, the column size in bytes for a particular numeric
data value NUMBER (p), where p is the precision of a given value, can be
calculated using the following formula:
ROUND((length(p)+s)/2))+1
where s equals zero if the number is positive and s equals 1 if the number is
negative.
Zero and positive and negative infinity (only generated on import from Version
5 Oracle databases) are stored using unique representations. Zero and negative
infinity each require one byte; positive infinity requires two bytes.
Reference:
Oracle Concepts Manual