When creating a column of type NUMBER in Oracle, you have the option of not specifying a precision or scale. What do these default to if you don't specify them?
|
|
NUMBER (precision, scale) If a precision is not specified, the column stores values as given. If no scale is specified, the scale is zero. A lot more info at: http://download.oracle.com/docs/cd/B28359_01/server.111/b28318/datatype.htm#CNCPT1832 |
||
|
|
|
|
By
As we can see, the maximal number here is |
||
|
|
|
|
I believe the default precision is 38, default scale is zero. However the actual size of an instance of this column, is dynamic. It will take as much space as needed to store the value, or max 21 bytes. |
|||
|
|
