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

  • SEARCH
  • Home
  • 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

Ask A Question

Stats

  • Questions 180k
  • Answers 180k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I don't know about in HTML files, but in C#… May 12, 2026 at 3:58 pm
  • Editorial Team
    Editorial Team added an answer In the Data Source View, right click the Table Name,… May 12, 2026 at 3:58 pm
  • Editorial Team
    Editorial Team added an answer You can create all that with jQuery via chained calls:… May 12, 2026 at 3:58 pm

Related Questions

Given the following table in SQL Server 2005: ID Col1 Col2 Col3 -- ----
Scenario: I have an application that has a config table which stores the config
I have the following three tables: alt text http://img16.imageshack.us/img16/5499/linqtosqlquery.jpg With LinqToSql I would like
I have a simple Converter that adds a + symbol to a positive number

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.