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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:16:16+00:00 2026-06-01T06:16:16+00:00

I have a complex Query (Without any locking hints) that takes data from many

  • 0

I have a complex Query (Without any locking hints) that takes data from many tables say Table1,Table2,Table3

Below is the code the code to retrieve data (there are no transactions)

  IDbCommand sqlCmd = dbHelper.CreateCommand(Helper.MyConnString, sbSQL.ToString(), CommandType.Text, arParms);
  sqlCmd.CommandTimeout = 300;
  ds = dbHelper.ExecuteDataset(sqlCmd);

In an application this query runs every 2 minutes

When i fire a simple update query say

Update Table1 set Col1='abc' where ID=100  

(where ID is int and primary key + clustered index)

the update query gets delayed and many times it is timeout
Below is the log
enter image description here

How can i fix this.

  • 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-06-01T06:16:17+00:00Added an answer on June 1, 2026 at 6:16 am

    You could execute your query inside a transaction that has an isolation level of SNAPSHOT. That way, your query won’t acquire any (shared) locks and your UPDATE doesn’t have to wait for the exclusive lock (given that the source of the locks on the table that block your UPDATE is really your query that the application runs every two minutes…)

    For reference, have a look at Working with Snapshot Isolation and SET TRANSACTION ISOLATION LEVEL on MSDN.

    EDIT due to comment:

    First, turn on ALLOW_SNAPSHOT_ISOLATION for your database:

    ALTER DATABASE YourDB SET ALLOW_SNAPSHOT_ISOLATION ON
    

    Then, write your query as follows:

    SET TRANSACTION ISOLATION LEVEL SNAPSHOT;
    
    SELECT      Column1, Columns2, ...
    FROM        Table1
    LEFT JOIN   Table2
    ON          Table1.Columns45 = Table2.Column3
    [... your complex query ...]
    

    Is that enough for an example?

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

Sidebar

Related Questions

I have a complex query that gets executed like this: if ($stmt = $dbi->prepare($pt_query))
I have a complex sql query that I have in a stored procedure and
I have a fairly complex data model and consequently a fairly complex query (using
I have a quite complex multi-join TSQL SELECT query that runs for about 8
I have a complex object and when I use a linq query without the
Does rails have any way to have complex sorting at the database query level?
I have a complex query that requires a rank in it. I've learned that
I have a dataset from a complex query which I've selected into a temp
I have a query that joins two tables. One table has a column that
I have a complex query that's executed on every page and whose results rarely

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.