ORA-01426: numeric overflow : ORA Error « System Packages « Oracle PL / SQL
- Oracle PL / SQL
- System Packages
- ORA Error
ORA-01426: numeric overflow
SQL>
SQL> begin
2 for i in power(2,31) .. power(2,31)+10 loop
3 null;
4 end loop;
5 end;
6 /
begin
*
ERROR at line 1:
ORA-01426: numeric overflow
ORA-06512: at line 2
SQL>
SQL>
Related examples in the same category