Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: ora-01008 / ora-00932 unexplainable errors

Re: ora-01008 / ora-00932 unexplainable errors

From: Martin Haltmayer <Martin_Haltmayer_at_KirchGruppe.de>
Date: 1998/02/14
Message-ID: <34E5BAD8.FB5BE73B@KirchGruppe.de>

This a known Oracle bug (at least for the support in Germany. Bug number is 419989):

Martin Haltmayer

sminni_at_giascl01.vsnl.net.in wrote:
>
> Hi,
>
> using Oracle 7.1.3.3.3 SQL*net 2.3.2.x.x & Sql*worksheet
>
> I keep getting the following errors
>
> ORA-01008 Inconsistent Datatype
> ORA-00932 Not all variables bound
> when I define Bind (substitution ) variables
>
> The errors and situation is unpredictable. In fact merely
> altering the order of columns seems to remove the problem !
>
> I reproduce a section of the code :
> error :
> SQLWKS> select ( :arg_start_date - sysdate ) d1,
> 2> ( :arg_start_date - sysdate ) d2,
> 3> ( :arg_stop_date - sysdate ) d3
> 4> from dual
> 5>
> ORA-00932: inconsistent datatypes
> but this works !:
> SQLWKS> select ( :arg_start_date - sysdate ) d1,
> 2> ( :arg_stop_date - sysdate ) d2,
> 3> ( :arg_start_date - sysdate ) d3
> 4> from dual
> 5>
> D1 D2 D3
> ---------- ---------- ----------
>
> 1 row selected.
> Note : the only difference is that position of column d2 & d3 is interchanged
>
> The error message varies between 00932 & 01008
>
> Any help will be appreciated as some of our vital reports are help up.
> Pl mark a copy directly to me - sminni_at_giascl01.vsnl.net.in
>
> -----== Posted via Deja News, The Leader in Internet Discussion ==-----
> http://www.dejanews.com/ Now offering spam-free web-based newsreading
Received on Sat Feb 14 1998 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US