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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T09:43:32+00:00 2026-05-25T09:43:32+00:00

I initialiye a GridView with the top 250 most recent records (from Table Document).

  • 0

I initialiye a GridView with the top 250 most recent records (from Table Document).
I developed a button add all, in order to be able to load all entries (on avarage all returned records might vary from 400 to 3000).

Instead of loading all the records set completely I would prefer an incremental approach, adding only the remaining records and not the ones already loaded.

However if I use the following query:

SELECT d.ItemID FROM Documents d
WHERE NOT EXISTS
( SELECT ItemID FROM Documents WHERE CategoryID = d.CategoryID )

I would need to pass the 250 IDs from the Client to the Server execute the query and the subquery and then return the result.

How could I optimize this procedure? Or is it in this case fine returning derctly all the record set?

  • 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-25T09:43:33+00:00Added an answer on May 25, 2026 at 9:43 am

    Will the top 250 records be the same between the first and second query? In other words, is the data likely to change between the first call and second?

    If not, you could simply use the first query to exclude rows from the second (assuming T-SQL):

    SELECT 
        d.ItemID 
    FROM 
        Documents d 
    WHERE 
        d.ItemID NOT IN 
          (
             --this would be whatever your first query was
             SELECT TOP 250 ItemID 
             FROM Documents 
             WHERE CategoryID = d.CategoryID 
             ORDER BY d.ItemID DESC
          ) 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have to create a gridview that is loaded with images from a specific
i m developing an application in which gridview contain list of button... when i
In this following gridview image.png images are taken from the drawable folder.Now I want
I'm experiencing problem in Eclipse, when i add a GridView in my layout file
I am initializing a GridView, text box and a button via code to a
I am working on a GridView in Asp.Net. When initially a the Page Loads,
To initialize an int array with all zeros, do I need to use: int
def initialize(apps, catch=404) @apps = []; @has_app = {} apps.each { |app| add app
How can I remove the current cell focus from a Windows Forms datagridview ?
I have a scrollable GridView in my Web Part and I have to make

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.