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;
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...