Recent content by Denis

  1. D

    chr(0) in SQL window

    Greetings! In SQL window the result of the statement select '1'||chr(0)||'2' from dual; is displayed like '1' whereas select '1'||chr(1)||'2' from dual; is displayed like '12' The recent result really misleads because anything like '*'||chr(0) looks like NULL Cheers Denis
  2. D

    Access violation

    It seems to happen when oracle client 9.0.1 is used only. See 'oracommon9.dll' in the error message. Denis
  3. D

    Access violation

    Greetings! Wenever I put a statement like select * from dual where 1=:x PL/SQLDeveloper hangs up saying Access violation at address 60537987 in module 'oracommon9.dll'. Read of address 00000000. my configuration is w2k sp3, oracle client 9.0.1, PL/SQLDeveloper 5.1.3.704 Yes, I khow that...
  4. D

    ORA-24333 at PL/SQL block in TOracleQuery

    HELP! I've got a problem - when I'm trying to execute a PL/SQL block using TOracleQuery there's such an error message: ORA-24333 zero iteration count The PL/SQL block is pretty simple: begin ut:=myfunction(34); -- 34 - any literal value end; or even begin null...
Back
Top