Recent content by Goffman

  1. G

    utl_file.put_raw

    Thanks, But it doesnt work with :file_id I made it like this declare fh sys.utl_file.file_type; begin fh:=utl_file.fopen(:directory,:file_path,'w'); utl_file.put_raw(fh, :raw_data); utl_file.fclose(fh); end;
  2. G

    utl_file.put_raw

    Hello, Is there any abilitity to write into BFile binary data using DOA? There is implemented UTL_FILE.PUT_LINE, but PUT_RAW is not :(
  3. G

    ORA-01410: invalid ROWID

    Hello Marco. I don't think it is logical behaviour :) But anyway thank you for your answer
  4. G

    ORA-01410: invalid ROWID

    Hello! If I set the UniqueFiels with some fieldname DOA will use this fieldname in DML instead of Rowid, doesn't it? But if I set RefreshOptions=(roBeforeUpdate) it will use Rowid in select predicate before updating a row. My join query doesn't have any correct rowid so it raises error. Is...
Back
Top