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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:54:08+00:00 2026-05-20T10:54:08+00:00

Is it possible to do an explicit shared lock on a table in SQL

  • 0

Is it possible to do an explicit shared lock on a table in SQL Server?

I need to do the following:

  • shared lock table
  • copy table to temp table, for manipulation
  • exclusive lock table
  • copy stuff from tempTable to table
  • release all locks

Basically, I want to be sure that nothing is added to the table, while I’m doing stuff to the temp table, but I still want it to be readable.

For some reason, putting the whole thing in a transaction causes a deadlock in some of the stuff I do to the temp table, so that is not an option.

  • 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-20T10:54:08+00:00Added an answer on May 20, 2026 at 10:54 am

    The only way to hold table locks is to keep a transaction open. So we may need more information about this “deadlock in some of the stuff I do to the temp table”.

    Depending on the task, the temp table may not be necessary at all – it sounds like you’re building something from a procedural mindset rather than a set-based one.

    The basic sketch for what you’ve outlined would be:

    /* Create temp table here */
    BEGIN TRANSACTION
    INSERT INTO #Table (/* Columns */)
    SELECT /* Columns */ FROM SourceTable WITH (UPDLOCK,HOLDLOCK)
    
    /* Work within temp table here */
    UPDATE st
    SET
       /* Set new column values based on temp table */
    FROM
       SourceTable st
           inner join
       #Table t
           on
               /* Key column join here */
    COMMIT
    

    You need to specify an UPDATE lock rather than a shared lock, which is effectively “A shared lock now, but I intend to go exclusive later on within the same transaction”, to prevent a possible deadlock.

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

Sidebar

Related Questions

Is it possible to reflect on an explicit interface implementation from the call stack?
Is it possible to pass the data from Browser to Explicit Activity? Ex: I
Possible Duplicate: Explicit vs implicit SQL joins Is there a difference using join andselect
Is it possible to fire explicit intent but not for an activity from my
Possible Duplicates: Why does null need an explicit type cast here? Nullable types and
Is it possible to start an explicit intent from a Titanium Android app? I
Is it possible to set an explicit lock on a file in TFS? I
Possible Duplicate: Best way to stop SQL Injection in PHP If I were to
Possible Duplicate: What does the explicit keyword in C++ mean? explicit CImg(const char *const
Database has table X and tables An, Bn, Cn, Dn that inherits from X.

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.