Recent content by kmm_micha

  1. K

    Converting long columns

    Thanks a lot! It worked fine for me, but after a milion of silly tries we discovered other way: create table temp (teste clob); insert into temp select to_lob(search_condition) from sys.dba_constraints; select t.*, to_char(teste) from temp t;
  2. K

    Converting long columns

    Hi. When trying to convert a LONG column to a VARCHAR2 column in the following statement... -------------------------------- select to_char(search_condition) from sys.dba_constraints; -------------------------------- ... I get the following error: ---------------------------------------...
  3. K

    Compile invalid objects

    Wow, it works perfeclty.... on 10G version, but did not word on 9i. What code or file works on 9i?
  4. K

    Compile invalid objects

    Can you show me the code you use to compile invalid objects? Thanks and waiting answer!
  5. K

    Unimplemented feature

    I have an application that executes a sql with two with's. When I run this sql by pl/sql developer, it works fine, but when I run this sql by my application, using DOA, I get the error: Unimplemented Feature. How can I correct this? Thanks.
Back
Top