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

  • Home
  • SEARCH
  • 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 6915637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:30:00+00:00 2026-05-27T09:30:00+00:00

I have a situation where a query might be called multiple times from multiple

  • 0

I have a situation where a query might be called multiple times from multiple users, but I only want it to run once (per week) against the database. The environment is SQL Server Express so scheduling via SQL Server Agent is not an option. It needs to be 2005 compatible. I’d like to make it as lightweight as possible too, so I’m asking for suggestions. Ideally a database wide declared variable – but I don’t think that SQL Server supports such a beast? Thanks

  • 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-27T09:30:01+00:00Added an answer on May 27, 2026 at 9:30 am

    Try something like this:

    IF NOT EXISTS ( -- Check if you have the current week content
        SELECT  * 
        FROM    WeeklyTable 
        WHERE 
                DATEPART(YEAR, DateCr) = DATEPART(YEAR, GETDATE())
                AND
                DATEPART(WEEK, DateCr) = DATEPART(WEEK, GETDATE())
      )
    BEGIN 
       -- delete old content
      DELETE WeeklyTable
       -- insert new content
      INSERT INTO WeeklyTable (MyID, MyField1, ... , MyFieldN, DateCr)
        SELECT 
          MyID, MyField1, MyField2, GETDATE()
        FROM MainTable
    END
    

    You can create indexes you need for the WeeklyTable.

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

Sidebar

Related Questions

i have a sql query with multiple joins & it pulls data from a
I have a situation where I want to assemble a Doctrine select query based
I have situation, where running a query that filters by an indexed column in
I've been working on optimizing a query and have ran into a situation that's
I have situation in which I read a record from a database. And if
We have a situation where users are allowed to upload content, and then separately
I have a situation where I am providing a method to query for data
I have this situation where I need to get some data from a webpage
I have a situation where a certain linq query that runs against a multi-million
The Situation As some of you might already know from my previous questions, I'm

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.