Hello Marco,
>>Update: we have been able to reproduce the >>problem, and are looking for a solution now.
can i expect, that this issue will be solved in the upcomping release?
Walter
Hello Marco,
>>Sorry . I have placed this at the top of our >>list.
3 months is a long time for beeing on the top of the list. :(
maybe you could really look into this. i have written a short test programm. it creates a table with an varchar2(4000 char) field.
1) it inserts a record...
You could use an analytic function if you really want to do this.
Query would look like this:
select * from
(select emp.*, row_number() over (partition by '' order by empno) rn -- your order by
from emp -- your from clause
where empno>500) -- your where statement
where
rn...
Hello,
i am using Doa 4.0.5, Delphi 7 and Oracale 9i. Our database is configured for unicode support(Session.BytesPerCharacter is set to bcAutoDetect - the function returns 4 Bytes per Character).
When i am using Bind Variables in a TOracleQuery i can not insert strings longer than 1000...