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 76733
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:43:11+00:00 2026-05-10T20:43:11+00:00

I have a long running insert transaction that inserts data into several related tables.

  • 0

I have a long running insert transaction that inserts data into several related tables.

When this insert is running, I cannot perform a select * from MainTable. The select just spins its wheels until the insert is done.

I will be performing several of these inserts at the same/overlapping time. To check that the information is not inserted twice, I query the MainTable first to see if an entry is there and that its processed bit is not set.

During the insert transaction, it flips the MainTable processed bit for that row.

So I need to be able to read the table and also be able to tell if the specific row is currently being updated.

Any ideas on how to set this up in Microsoft SQL 2005? I am looking through the SET TRANSACTION ISOLATION LEVEL documentation.

Thank you,
Keith

EDIT: I do not think that the same insert batch will happen at the same time. These are binary files that are being processed and their data inserted into the database. I check that the file has not been processed before I parse and insert the data. When I do the check, if the file has not been seen before I do a quick insert into the MainTable with the processed bit set false.

Is there a way to lock the row being updated instead of the entire table?

  • 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-10T20:43:11+00:00Added an answer on May 10, 2026 at 8:43 pm

    You may want to rethink your process before you use READ UNCOMMITTED. There are many good reasons for isolated transactions. If you use READ UNCOMMITTED you may still get duplicates because there is a chance both of the inserts will check for updates at the same time and both not finding them creating duplicates. Try breaking it up into smaller batches or issue periodic COMMITS

    EDIT

    You can wrap the MainTable update in a transaction that will free up that table quicker but you still may get conflicts with the other tables.

    ie

    BEGIN TRANSACTION  SELECT @ProcessedBit = ProcessedBit FROM MainTable WHERE ID = XXX  IF  @ProcessedBit = False     UPDATE MainTable SET ProcessedBit = True WHERE ID = XXX  COMMIT TRANSACTION  IF  @ProcessedBit = False BEGIN     BEGIN TRANSACTION     -- start long running process     ...     COMMIT TRANSACTION END 

    EDIT to enable error recovery

    BEGIN TRANSACTION  SELECT @ProcessedStatus = ProcessedStatus FROM MainTable WHERE ID = XXX  IF  @ProcessedStatus = 'Not Processed'     UPDATE MainTable SET ProcessedBit = 'Processing' WHERE ID = XXX  COMMIT TRANSACTION  IF  @ProcessedStatus = 'Not Processed' BEGIN     BEGIN TRANSACTION     -- start long running process     ...     IF No Errors    BEGIN        UPDATE MainTable SET ProcessedStatus = 'Processed' WHERE ID = XXX        COMMIT TRANSACTION    ELSE        ROLLBACK TRANSACTION  END 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer c:= cParent.Create; WriteLn(c.ChildFunction); You create an instance of cParent class… May 12, 2026 at 12:51 am
  • Editorial Team
    Editorial Team added an answer The easiest way is in p4v or p4win, but that's… May 12, 2026 at 12:51 am
  • Editorial Team
    Editorial Team added an answer Assuming you have a way to evaluate the classification, you… May 12, 2026 at 12:51 am

Related Questions

I'm facing what I think is a simple problem with Hibernate, but can't solve
I have a text file with a long list of terms (approx 800) sorted
I am trying to learn how Hibernate works, and I am running into an
Hey all, I'm pulling my hair out on this one. I've checked all my

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.