Re: Is Parallelism happening at INSERT level?
Date: Wed, 6 May 2020 17:01:59 -0500
Message-ID: <CAHSa0M1jBU4S+zeTkWchBeMYshX6v=XUki4+E_54_qMnhNESUA_at_mail.gmail.com>
Thank you all.
I should have added the information about the tables as well, but here they
are:
All the 193,000 rows in efgh (has only 2 number columns) are unique with
respect to esk, but does not have an index on it. Would an index help given
that it has to operate on all the data in efgh? I doubt it since it has to
grab all the rows.
Ram.
On Wed, May 6, 2020 at 12:30 PM Jonathan Lewis <jlewisoracle_at_gmail.com>
wrote:
>
TABLE_NAME NUM_ROWS LAST_ANAL BLOCKS
------------------------ -------------------- --------- ----------
efgh 193,031 30-APR-20 464
abcd 0 06-MAY-20 0
SCE 1,547,210,780 14-MAY-19 37444971
> Until 19c a query that uses a Bloom filter will "lose" the Bloom filter
> when it's changed to "insert as select".
> However CTAS does work, and there is a patch, that allows insert /*+
> append */ as select to use a Bloom filter.
>
> See blog and comments:
> https://jonathanlewis.wordpress.com/2016/07/08/dml-and-bloom/
>
> Regards
> Jonathan Lewis
>
>
>
>
>
> On Wed, May 6, 2020 at 4:04 PM Lothar Flatz <l.flatz_at_bluewin.ch> wrote:
>
>> Hi,
>>
>> I wonder if a Bloom Filter could be used on sce. Would that be faster
>> than probing? I would think so ...
>> There seems to be many rows not surviving the join.
>>
>> Regards
>>
>> Lothar
>>
>>
-- -- http://www.freelists.org/webpage/oracle-lReceived on Thu May 07 2020 - 00:01:59 CEST