Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 170887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T12:53:21+00:00 2026-05-11T12:53:21+00:00

I have the following UPDATE scenario: UPDATE destTable d SET d.test_count = ( SELECT

  • 0

I have the following UPDATE scenario:

UPDATE destTable d SET d.test_count = ( SELECT COUNT( employee_id )                      FROM sourceTable s                      WHERE d.matchCode1 = s.matchCode1 AND                            d.matchCode2 = s.matchCode2 AND                            d.matchCode3 = s.matchCode3                       GROUP BY matchCode1, matchCode2, matchCode3, employee_id ) 

I have to execute this in a loop changing out the match codes for each iteration.

Between two large tables (~500k records each), this query takes an unacceptably long time to execute. If I just had to execute it once, I wouldn’t care too much. Given it is being executed about 20 times, it takes way too long for my needs.

It requires two full table scans (one for the destTable and another for the subquery).

Questions:

  1. What techniques do you recommend to speed this up?

  2. Does the SQL-optimizer run the subquery for each row I’m updating in the destTable to satisfy the where-clause of the subquery or does it have some super intelligence to do this all at once?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T12:53:22+00:00Added an answer on May 11, 2026 at 12:53 pm

    In Oracle 9i and higher:

    MERGE    INTO    destTable d USING   (         SELECT  matchCode1, matchCode2, matchCode3, COUNT(employee_id) AS cnt         FROM    sourceTable s         GROUP BY                 matchCode1, matchCode2, matchCode3, employee_id         ) so ON      d.matchCode1 = s.matchCode1 AND         d.matchCode2 = s.matchCode2 AND         d.matchCode3 = s.matchCode3  WHEN MATCHED THEN UPDATE SET     d.test_count = cnt 

    To speed up your query, make sure you have a composite index on (matchCode1, matchCode2, matchCode3) in destTable, and a composite index on (matchCode1, matchCode2, matchCode3, employee_id) in sourceTable

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code: UPDATE myTable SET Col1 = @Value However, I have
I have an SQL query that takes the following form: UPDATE foo SET flag=true
I have the following scenario: User X logs in to the application from location
Let's says I have a set of tables that match the following scenario: Crates
Possible Duplicate: How to update GUI from another thread in C#? Following scenario: I
I have the following query: UPDATE lessonstatus INNER JOIN user ON lessonstatus.user_id = user.user_id
I have the following SQL statement where i'm trying to update multiple rows matching
Currently I have to write the following to update an element already contained in
I have the following javascript code, which loads without error, however the update function
Update: This does work, I was being stupid :( i have the following extension

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.