Re: Finding cause and fix for Idle wait event
Date: Fri, 24 Feb 2023 18:17:44 +0530
Message-ID: <CAKna9Vbpwuh4=dsSrMJetuRshT_DO6YORsEh-gc1qu63jnpe+Q_at_mail.gmail.com>
dbms_monitor.session_trace_enable( session_id => &m_sid, serial_num => &m_serial, waits => true, bind => true, plan_stat => 'all_executions' );
end;
/
begin
dbms_monitor.session_trace_disable(
session_id => &m_sid,
serial_num => &m_serial
);
end;
/
On Fri, 24 Feb, 2023, 2:10 pm Nenad Noveljic, <nenad.noveljic_at_gmail.com> wrote:
> I was under impression that look ups means just filters/read from the
>> informatica cache which would be fast, but I agree sorting rows like
>> 200million and joining can be resource intensive.
>>
> Informatica can also start spilling data to files.
>
> Is there any instrumentation available st informatica which shows how much
>> time/resources does those cached lookups take for a workflow?
>
> Not that I'm aware of. I don't, however, know the product. But you could
> measure CPU/memory/IO load to get an idea how intensive the processing is.
>
>
>> And do you say, modifying sdu_size/tdu in client side or database is not
>> going to make any difference in this case?
>
> Not if the primary cause is the Informatica process being busy with
> data crunching.
>
>
-- http://www.freelists.org/webpage/oracle-lReceived on Fri Feb 24 2023 - 13:47:44 CET