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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T18:20:17+00:00 2026-05-15T18:20:17+00:00

I have a legacy stored procedure that returns a large resultset. The problem is

  • 0

I have a legacy stored procedure that returns a large resultset.
The problem is that the resultset is too large to get all at once and then do paging and sorting on the web side.

Without changing the stored procedure is it possible to wrap it in some other sql code to get only certain results back in a fast manner.

Something like:

EXEC the_sp LIMIT 50 ORDER BY A

  • 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-15T18:20:18+00:00Added an answer on May 15, 2026 at 6:20 pm

    Without altering the stored procedure code your options are pretty limited.

    You could do

    CREATE TABLE #results(
        [rownum] [int] identity(1,1) NOT NULL,
        ...Other Columns matching stored procedure result format
    ) 
    
    insert into #results 
    EXECUTE dbo.the_sp
    
    SELECT * FROM #results 
    WHERE rownum BETWEEN 50 AND 100
    

    Obviously it will still end up doing the same amount of work in the stored proc itself (and add some overhead for the temp table step) but it will reduce the amount of results going back to the client.

    To mitigate this, and dependant on the stored procedure logic, you might be able to use

    SET ROWCOUNT 100
    EXECUTE dbo.the_sp
    

    To stop it returning unneeded results belonging to pages after the one being displayed

    But as this will apply to every statement in the stored proc (not just the final one returning results to the client) this may well not be suitable.

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

Sidebar

Related Questions

I have a legacy stored procedure that I'm trying to modify. This is a
I am working with a legacy application that stored passwords in plaintext. I have
We have some legacy stored procedures that use the now deprecated feature of SQL
I have an stored procedure that works on an table that contains xml field,
I have a stored procedure in an old SQL 2000 database that takes a
I work with legacy systems that have tens of thousand of lines of stored
I have a stored procedure currently executing a complicated fetch that is frequently timing
I have legacy DB that store dates that means no-date as 9999-21-31, The column
I have a legacy intranet web app that was written for IE7 and contains
We have a legacy WinCE device that's been working fine for years when it

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.