Recent content by walter.egger

  1. W

    ORA-01480: trailing null missing from STR bind value

    well 'they' are looking into this since 13th august 2004 - so far no solution!!! see my post from 2004 'unicode problem with long strings'
  2. W

    unicode problem with long strings

    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
  3. W

    Problem with TPLSQLTable and UTF8-Database

    I think it is the very same problem and it would be really nice if you could ever fix it..... Walter
  4. W

    unicode problem with long strings

    any news? walter :mad: :mad: :mad: :mad: :mad:
  5. W

    unicode problem with long strings

    any news? Walter
  6. W

    unicode problem with long strings

    Hello Marco, do you have any timeframe for checking that out? Thanks Walter
  7. W

    unicode problem with long strings

    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...
  8. W

    limit and oracle version

    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...
  9. W

    unicode problem with long strings

    Hello Marco, any news regarding this problem? Do you need any help to reproduce it? regards, walter
  10. W

    unicode problem with long strings

    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...
Back
Top