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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T18:31:52+00:00 2026-05-20T18:31:52+00:00

I have an update stored procedure that implements optimistic locking. The stored procedure looks

  • 0

I have an update stored procedure that implements optimistic locking. The stored procedure looks like this:

ALTER PROCEDURE [dbo].[usp_Test] 
    @Id AS char(2),
       @recordTimestamp as timestamp
       ...
BEGIN       
    UPDATE XY
           ..
          WHERE ((Id = @Id) AND (recordTimeStamp = @recordTimestamp))       

if @@rowcount = 0
begin
RAISERROR ('this row was changed by another user', 18, 1)
end

SELECT timeStamp from XY where Id = @Idend

Is there a simpler way to return the new timestamp? I would really like to avoid the SELECT statement.

  • 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-20T18:31:52+00:00Added an answer on May 20, 2026 at 6:31 pm

    Assuming at least SQL Server 2005 you can use OUTPUT

    UPDATE XY
    SET Col = 'foo'
    OUTPUT inserted.recordTimeStamp
    WHERE ((Id = @Id) AND (recordTimeStamp = @recordTimestamp))    
    

    Or a version that uses a table variable to more closely mirror the behaviour of the original query.

    DECLARE @Timestamp TABLE(stamp binary(8))
    
    UPDATE XY
    SET col='foo'
    OUTPUT inserted.recordTimeStamp INTO @Timestamp
    WHERE (Id = @Id) AND (recordTimeStamp = @recordTimestamp) 
    
    if @@rowcount = 0
    begin
    RAISERROR ('this row was changed by another user', 18, 1)
    end
    
    SELECT stamp 
    FROM @Timestamp
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a stored procedure that goes like this: ALTER PROCEDURE [dbo].[AuthenticateUser] @AzUserName varchar(20),
I have an update statement in a stored procedure that looks generally like this:
Let's say I have a simple stored procedure that looks like this (note: this
I would like to have a stored procedure that will update values in a
I have a stored procedure that says update table1 set value1 = 1 where
I have a stored procedure that updates a table using linq, eg: (this is
I have an stored procedure that get executed after insert and update. I need
I have been running up a stored procedure that runs several separate update and
My limited SQL knowledge prompted this post! I have a stored procedure that runs
I have a stored procedure that does both the insert and the update in

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.