Associative array what is the maximum index number?
I used
type number_type is table of number
index by pls_integer;
number_array number_type;
However. when I,
number_array(2808000301) := 42;
It gives overflow error because index type is pls_integer, And when I change index type pls_integer to number it gives error.
My question is what can I do to prevent this?