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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T06:25:13+00:00 2026-06-14T06:25:13+00:00

I have a search function set up, where I run multiple queries simultaneously. The

  • 0

I have a search function set up, where I run multiple queries simultaneously. The top 1000 results of each query are written to a table. (These run async–I am just leaving out the code that I am using to do that)

Insert into Results
Select Top 1000 Text from A where Contains(Text,'"searchString"')

Insert into Results
Select Top 1000 Text from B where Contains(Text,'"searchString"')

Insert into Results
Select Top 1000 Text from C where Contains(Text,'"searchString"')

Then, I select the top 1000 results from that table.

Select Top 1000 * from Results

Would there be a good way to efficiently check, at any point earlier in the process, if there are already 1000 results, and, if there are, cancelling the other queries and selecting the 1000 results ASAP.

  • 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-14T06:25:15+00:00Added an answer on June 14, 2026 at 6:25 am

    The following will likely give you a plan that achieves your desired result of not processing any rows after the 1,000th one has been found.

    WITH CTE
         AS (SELECT Text
             FROM   A
             WHERE  CONTAINS(Text, '"searchString"')
             UNION ALL
             SELECT Text
             FROM   B
             WHERE  CONTAINS(Text, '"searchString"')
             UNION ALL
             SELECT Text
             FROM   C
             WHERE  CONTAINS(Text, '"searchString"'))
    INSERT INTO Results
    SELECT TOP 1000 Text
    FROM   CTE 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have to implement a 'global' search/filter function in my application. Each window that
i have set in .htaccess Url Rewrite all working just my search function stop
I have a search function in my project. In the searchable.xml, i would like
I have a search function in which i am returning all the records of
I have a binary search function that will search for a word in an
I have created a Google Search function, however I would like to leave the
I have an active directory search function: Function GetAdInfo(ByVal ADDN As String, ByVal ADCommonName
I have a for loop in a search function, with a function that does
How can i have slide downeffect? The effect will be similar with search function
hai I have a magento web site. In this the search function compare with

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.