M
Matz
Hello,
I'am passing some sql-queries to an Oracle 8i Home Edition Database
using CSharp and the Oracle-Driver from Microsoft which is including
in the .NET Framewok 1.1. On the following query, I always get this
Error-Message:
OCI-22053: overflow error
This is the query:
select l_returnflag, l_linestatus, sum(l_quantity) as sum_qty,
sum(l_extendedprice) as sum_base_price, sum(l_extendedprice * (1 -
l_discount)) as sum_disc_price, sum(l_extendedprice * (1 -
l_discount) * (1 + l_tax)) as sum_charge, avg(l_quantity) as avg_qty,
avg(l_extendedprice) as avg_price, avg(l_discount) as avg_disc,
count(*) as count_order from lineitem where l_shipdate <= date
'1998-12-01' - interval '90' day (3) group by l_returnflag,
l_linestatus order by l_returnflag, l_linestatus
Does anyone has an idea?
Thanks!
I'am passing some sql-queries to an Oracle 8i Home Edition Database
using CSharp and the Oracle-Driver from Microsoft which is including
in the .NET Framewok 1.1. On the following query, I always get this
Error-Message:
OCI-22053: overflow error
This is the query:
select l_returnflag, l_linestatus, sum(l_quantity) as sum_qty,
sum(l_extendedprice) as sum_base_price, sum(l_extendedprice * (1 -
l_discount)) as sum_disc_price, sum(l_extendedprice * (1 -
l_discount) * (1 + l_tax)) as sum_charge, avg(l_quantity) as avg_qty,
avg(l_extendedprice) as avg_price, avg(l_discount) as avg_disc,
count(*) as count_order from lineitem where l_shipdate <= date
'1998-12-01' - interval '90' day (3) group by l_returnflag,
l_linestatus order by l_returnflag, l_linestatus
Does anyone has an idea?
Thanks!