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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:36:32+00:00 2026-05-27T16:36:32+00:00

I am trying to achieve something like the following sql statements in a transaction.

  • 0

I am trying to achieve something like the following sql statements in a transaction. Can anyone advice how I can accomplish this? most importantly, there shouldnt be any dirty read or write. Thanks!

UPDATE items SET assigned = 1 
WHERE 
    SELECT TOP 1 @item_no = item_no
    FROM items
    WHERE item_code = @item_code 
    AND store_id = @store_id

UPDATE parts SET issued = 1 
WHERE 
    SELECT TOP 1 @part_no = part_no 
    FROM parts
    WHERE part_id = part_id 

INSERT INTO issued_hardware (@item_no, @part_no, DateTime.now, @username);
  • 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. Editorial Team
    Editorial Team
    2026-05-27T16:36:33+00:00Added an answer on May 27, 2026 at 4:36 pm

    As other have mentioned you use a transaction and its isolation state to control Dirty Reads. I recommend against this since it means you can read an uncommitted transaction that may fail which can cause race conditions that are difficult to trace down.

    Also since you’re doing more that one data modification you should probably explicitly roll back your transaction. Finally your SQL needed to fixed. Taking advantage of the output clause is probably a good idea.

    BEGIN TRANSACTION;
    
    BEGIN TRY
    
    
         DECLARE @Item table (item_no int )
         DECLARE @part table (part_no int)
    
         UPDATE TOP 1 ITEMS 
         SET assigned = 1
         WHERE   
                item_code = @item_code 
                AND store_id = @store_id
         OUTPUT
                inserted.item_no 
         INTO @Item 
    
         UPDATE TOP 1 parts 
         SET issued = 1
         OUTPUT
                inserted.part_no
         INTO @part
    
    
         INSERT INTO issued_hardware 
         SELECT item_no, GetDate(), @UserName
         FROM @item, @part;
    
    
    
    
    
    END TRY
    BEGIN CATCH
        IF @@TRANCOUNT > 0
            ROLLBACK TRANSACTION;
    END CATCH;
    
    IF @@TRANCOUNT > 0
        COMMIT TRANSACTION;
    GO
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've trying to achieve something like this: class Base { public: Base(string S) {
I am currently trying to achieve something like this: Based on this class, I
I am trying to achieve exactly something like this - a text view on
What I am trying to achieve is something like this: class object: def __init__(self):
I am trying to achieve something like the following but dont know whats wrong:
I'm trying to achieve something like the following in C++: class MyVector; // 3
I am trying to achieve something like this with CSS: I'd like to keep
how can i paste something on multiple lines? i'm trying to achieve the same
I am trying to achieve the following. I have a dozen divs with something
I'm using Maven 3.0.3 and trying to achieve the following: project-a (this is my

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.