Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Update is running long with temp transformation in execution plan

We have an update process that is running long and it seems like temp transformation plan lines are taking more time

UPDATE
        COMSYS.BRANCH_BONUS_DETAIL A
SET
        (
                EXCLUDE_FLAG,
                REASON      ,
                LAST_OSJ_DATE
        )
        =
        (
                SELECT
                        'Y',
                        A.REASON
                                ||'5 - CHANGED OSJ ON '
                                ||REP_LAST_OSJ_SWTCH_DT
                                ||'|',
                        REP_LAST_OSJ_SWTCH_DT
                FROM
                        COMSYS.REP_OSJ_SWITCH_VW_BRANCH_BONUS
                WHERE
                        REP_ID = A.REP_ID)
WHERE
        PAY_PERIOD = :B1
AND     EXISTS
        (
                SELECT
                        'X'
                FROM
                        COMSYS.REP_OSJ_SWITCH_VW_BRANCH_BONUS
                WHERE
                        REP_ID                 = A.REP_ID
                AND     REP_LAST_OSJ_SWTCH_DT >= :B2 )
AND     EXISTS
        (
                SELECT
                        'x'
                FROM
                        COMSYS.REP
                WHERE
                        REP_ID               = A.REP_ID
                AND     MASTER_BANK_ID IS NULL
                AND     NVL(MASTER_ID,REP_ID) NOT IN
                        (
                                SELECT DISTINCT
                                        MASTER_BANK_ID
                                FROM
                                        COMSYS.REP
                                WHERE
                                        MASTER_BANK_ID IS NOT NULL))





  

Comments

John JB Brock-Oracle

What browser(version) and OS (version) are you working with?

I can not reproduce what you are describing using Win10 and the latest Chrome. Right-Clicking on that table demo shows me a context menu for sorting.  It does not select a row, or do any other selections.

HamedRoknizadeh

Hello,

I thinks you need a uniqe Key for the rows.

self.dataprovider = new oj.ArrayDataProvider(deptArray, {idAttribute: 'DepartmentId'});

Thanks

Hamed

3608145

Hi John,

I am using the lastest version of Google Chrome on Ubuntu 16.04.

I do get the context menu, but if I start hovering over other rows it starts to select -mark on yellow- these rows.

3608145

Hi Hamed,

I have a unique key for the rows, I get the same right click selection behavior on the cookbook link posted before, I thought this was an expected behavior from Ojet tables.

3608145

I tried it with Firefox 53 on Ubuntu 16.04 with no luck either. It worked as expected on W10 using the latest version of Chrome.

HamedRoknizadeh

Hi,

Can you please share your code?

Thanks

Hamed

3608145

Sorry for the late response,

I could share it, but what is weird is that the cookbook example doesn't work as expected either, I am not sure if my OS is the reason for this discrepancy. As I said before, the cookbook example works fine on Windows 10 but not in Ubuntu 16.04, at least in my computer.

Thanks,

1 - 7

Post Details

Added on Oct 2 2020
12 comments
966 views