Tagged Questions
The paging tag has no wiki summary.
40
votes
6answers
24k views
How to use GWT 2.1 Data Presentation Widgets
At the 2010 Google IO it was announced that GWT 2.1 would include new Data Presentation Widgets. 2.1M is available for download, and presumably the widgets are included, but no documentation has yet ...
27
votes
6answers
11k views
What is the best way to paginate results in MS SQLServer
What is the best way (performance wise) to paginate results in SQL Server 2000, 2005, 2008 if you also want to get the total number of results (before paginating)?
24
votes
3answers
19k views
efficient way to implement paging
Should I use LINQ's Skip() and Take() method for paging, or implement my own paging with a SQL query?
Which is most efficient? Why would I choose one over the other?
I'm using SQL Server 2008, ...
23
votes
6answers
3k views
Paging SQL Server 2005 Results
How do I page results in SQL Server 2005?
I SQL Server 2000, there was no reliable way todo this but I'm now wondering if SQL Server 2005 has any built in method.
What I mean by paging is, for ...
12
votes
1answer
107 views
How prompt is x86 at setting the page dirty bit?
On the x86 processor family:
From a software point of view, what is the latency between an instruction that dirties a memory page and when the core actually marks the page dirty in the Page Table ...
11
votes
3answers
1k views
MongoDB - paging
When using MongoDB, are there any special patterns for making e.g. a paged view?
say a blog that lists the 10 latest posts where you can navigate backwards to older posts.
Or do one solve it with an ...
11
votes
3answers
752 views
C++ / Linux - How to prevent paging for one program / process?
I don't know if SO or SF is the right place for that kind of question but I think it is something you could achieve with code.
I have a program that requires much memory, like 2/3 of all the physical ...
11
votes
4answers
12k views
ListView with DataPager not working
From everything I've read, it seemed that adding paging to a ListView control should be dead simple, but it's not working for me. After adding the ListView and DataPager controls to the form and ...
10
votes
6answers
7k views
How do you implement paging in ASP.NET MVC?
Currently, I'm using a strategy found on many blog posts. Basically, the URL contains the page number (e.g. /Users/List/5 will give you the users on page 5 of your paged list of users). However, I'm ...
9
votes
3answers
457 views
Problem UIScrollView pagingenabled in IOS 3.1.3
I have set paging property of scroll view to 'scrollview.pagingEnabled = YES'. When tested it seems to be working in IOS 4 and above but it is not working on iOS 3.1.3. Can any one help me with this?
...
9
votes
3answers
7k views
Android horizontal scollview behave like iPhone (paging)
I have a LinearLayout inside a HorizontalScrollView. The content is just a image. While scrolling, I need to achieve the same behavior you get when setting the paging option on a the iPhone equivalent ...
9
votes
4answers
7k views
Is UIPageControl Useless By Itself?
I've been looking into using the UIPageControl for a scrolling part of an application, and I was wondering how it works. The docs show methods for changing pages, setting the number of pages etc., but ...
9
votes
4answers
4k views
ASP.NET paging control
I'm looking for a decent paging control in ASP.NET, much like the Stackoverflow pager. Can anyone recommend one?
I'd prefer one that didn't use Postback either, just a customisable querystring.
8
votes
3answers
4k views
How do I use Linq for paging a generic collection?
I've got a System.Generic.Collections.List(Of MyCustomClass) type object.
Given integer varaibles pagesize and pagenumber, how can I query only any single page of MyCustomClass objects?
7
votes
1answer
248 views
memory paging with D
I'm using D/Tango for catalog indexing, is there any library to aid with memory (RAM) paging for a dictionary which is in memory and can go up to 10gb while performing indexing?
7
votes
5answers
14k views
Select COUNT(*) of subquery without running it twice
I've got a procedure to return a result set which is limited by page number and some other stuff. As an OUTPUT parameter I need to return a total amount of selected rows according to the parameters ...
7
votes
3answers
2k views
How can I make shift+spacebar page up in Vim?
I have an entry in my .vimrc which makes it page down the viewport when I hit the spacebar. It looks like this:
map <Space> <PageDown>
I want to create another key mapping which pages ...
6
votes
2answers
184 views
What is the best practice of sorting data with paging, on Business Tier or Database Tier?
It might be a frequently asked question, however so far i couldn't find a convincing answer.
In my project, I need to do paging for a set of around 20,000+ records which is a joined result from ...
6
votes
3answers
175 views
c++ heavy data processing and paging
I'm writing an application that should process large ammounts of data (between 1-10 GB) as realtime as possible.
the data is present in multiple binary data files on harddisk, each between few kb ...
6
votes
6answers
2k views
Adding a projection to an NHibernate criteria stops it from performing default entity selection
I'm writing an NHibernate criteria that selects data supporting paging. I'm using the COUNT(*) OVER() expression from SQL Server 2005(+) to get hold of the total number of available rows, as suggested ...
6
votes
1answer
1k views
Best practice for WCF service with large amounts of data?
We have a WCF service that is used for querying an underlying data store (SQL Server 2005 right now). This service may return rather large amounts of data; 60000+ instances of our entity class that ...
6
votes
1answer
3k views
UIScrollView - (bounces = NO) seems to override (pagingEnabled = YES)
I have a UIScrollView with paging in it (so the typical model with a UIPageControl and dragging/flicking left and right between pages), and I've got that working fine. The weird thing is that when I ...
6
votes
4answers
2k views
Is there a paging solution for ASP.NET MVC that does paging in the database?
Most of the ASP.NET MVC paging solutions I have found by googling look like they get all rows from a database table in the form of a IEnumerable collection, perform some paging conversion on the ...
6
votes
4answers
413 views
how does StackOverflow optimise the performance for the display of the questions?
i am trying to learn c#.net to program a web app.
And having learned that stackoverflow uses C#.net I am happy to discover it.
I noticed that at the home page or at the questions section, whenever i ...
6
votes
8answers
4k views
Pseudo Random Sort in MS SQL (not NEWID() and not RAND())
I would like to randomly sort a result in a repeatable fashion for purposes such as paging. For this NEWID() is too random in that the same results cannot be re-obtained. Order by Rand(seed) would ...
6
votes
6answers
465 views
Web displays: Paging vs. long tables
It seems that the trend in web design is to provide paged output, where long tables are displayed a page at a time. My customers don't like that, and have requested that the web sites I design for ...
6
votes
6answers
1k views
How to implement database engine independent paging?
Task: implement paging of database records suitable for different RDBMS. Method should work for mainstream engines - MSSQL2000+, Oracle, MySql, etc.
Please don't post RDBMS specific solutions, I know ...
6
votes
6answers
3k views
Algorithm / pseudo-code to create paging links?
Can someome provide code or pseudo-code for how the paging links in stackoverflow are generated?
I keep racking my brain but can't think of a decent way to build the dynamic links that always shows ...
5
votes
2answers
3k views
iPhone - Nesting UIScrollViews for horizontal paging and vertical scrolling
I'm developing my first iPhone app and I would greatly appreciate you guy's input on a problem I'm having.
I'm looking to implement scrolling both horizontally and vertically. I want the horizontal ...
5
votes
6answers
394 views
How to optimize paging for large in memory database
I have an application where the entire database is implemented in memory using a stl-map for each table in the database.
Each item in the stl-map is a complex object with references to other items in ...
5
votes
2answers
2k views
T-sql: how to perform optimised Paging?
I wrote the following code, it works fine, but it takes like 3 sec to complete if the table is containing a million record. Is there a way to optimize the following code.
DBCC DROPCLEANBUFFERS;
...
5
votes
1answer
351 views
malloc behaves differently on different machines
I see totally different behavior when running a piece of program that tries to exceed RSS on different machines. The code is something like:
...
char** s = (char**)malloc(10000*sizeof(char*));
...
5
votes
2answers
3k views
NHibernate paging with SQL Server
When using SetFirstResult(start) and SetMaxResults(count) methods to implement paging I've noticed that the generated query only does a select top count * from some_table and it does not take the ...
5
votes
2answers
3k views
Forcing ASP.NET GridView's pager to show
is there some way to force the gridview's pager to show up, even when there is only one page of data on screen?
I'm building a gridview-based control with a custom pager (w/dropdown for pagesize) and ...
5
votes
3answers
2k views
LINQ To SQL Paging
I've been using .Skip() and .Take() extension methods with LINQ To SQL for a while now with no problems, but in all the situations I've used them it has always been for a single table - such as:
...
4
votes
1answer
226 views
How can I customize the labels for the pager in Yii?
I am new to Yii. I want to implement custom pagination. I want to change the appearance of the pager. How do I change the labels of the pager's links?
I want the links to appear like so:
<< ...
4
votes
3answers
96 views
Page Faults and Programming In .Net
I'm reading a book about Operating Systems and it gives some examples in C that I mostly understand. The example I'm looking at now shows two nearly identical pieces of code that will run on a ...
4
votes
1answer
674 views
ExtJS paging grid filters only the first page
I am working on a grid which uses filters, but it only filters the first page. When I click 'next' it forgets about my filters and loads the next set of records. How do I make it remember the filter ...
4
votes
1answer
331 views
Gridpanel lost filter while paging
I have a jsonStore bound to gridpanel with paging toolbar and some custom filter. But everytime when I use paging all filtersettings get lost. How can I keep them?
4
votes
2answers
595 views
SQL sorting , paging, filtering best practices in ASP.NET
I am wondering how Google does it. I have a lot of slow queries when it comes to page count and total number of results. Google returns a count value of 250,000,00 in a fraction of a second.
I am ...
4
votes
8answers
213 views
Loading first page of data quickly over HTTP
Pretty normal scenario:
I have a report with a large number of rows (>2000) to be rendered as an HTML table.
I am paging the results on the client (browser) side.
I want to render the first page as ...
4
votes
3answers
400 views
SSRS Url Access and Paging
I have an app that executes and displays reports from SSRS retrieved through URL Access (http://msdn.microsoft.com/en-us/library/ms153586.aspx) Unfortunately, one of these reports is HUGE, resulting ...
4
votes
1answer
2k views
How do I lazy load 100+ pages in a UIScrollView with paging enabled?
I'm creating a comicbook-like application. I'm using a UIScrollView with paging enabled to display the hi-res full-screen images (the app works similar to Photos.app but with zooming disabled). The ...
4
votes
1answer
56 views
Is an Object the smallest pageable unit in the Heap?
If I have a 2 GB ram and I have an 2 instances of an Object which is 1.5 GB each, the operating system will help and context switch the pages to and from harddisk.
What if I have 1 instances but is ...
4
votes
1answer
287 views
Virtual Memory and Paging
I am doing some exercices to understand how the virtual memory and paging works, my question is as follows :
Suppose we use a paged memory with pages of 1024 bytes, the virtual address space is of 8 ...
4
votes
1answer
3k views
Efficient paging with large tables in sql 2008
for tables with > 1,000,000 rows and possibly many many more !
haven't done any benchmarking myself so wanted to get the experts opinion.
Looked at some articles on row_number() but it seems to ...
4
votes
4answers
2k views
Paging with LINQ for objects
How would you implement paging in a LINQ query?
Actually for the time being, I would be satisfied if the sql TOP function could be imitated. However, I am sure that the need for full paging support ...
4
votes
3answers
4k views
T-SQL SELECT DISTINCT & ROW_NUMBER() OVER Ordering Problem
I'm trying to select DISTINCT rows from a view using ROW_NUMBER() OVER for paging. When I switched the ORDER BY field from a SMALLDATETIME to INT I started getting weird results:
SELECT RowId, ...
4
votes
1answer
1k views
alphabet navigation with paging in jquery
I need to do alphabet navigation with paging for my grid/table in asp.net mvc(C#) application.
I am looking for something similar to jquery ListNav
The above plugin is good in doing alphabet ...
4
votes
4answers
2k views
Does Devexpress GridControl for win forms support paging?
Does Devexpress GridControl for win forms support paging? If yes, how does it work? How can i use paging to show some data in a grid control? Any example would be appreciated