14
votes
7answers
1k 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 …
10
votes
6answers
1k 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)?
6
votes
1answer
203 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?
6
votes
2answers
2k 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 …
6
votes
6answers
482 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 …
5
votes
4answers
321 views
how does StackOverflow optimise the performance for the display of the questions?
Hi there,
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 …
5
votes
4answers
2k 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 …
5
votes
6answers
241 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 …
4
votes
3answers
2k views
efficient way to make paging on sql server 2008
hi there, i'm using sql server 2008, asp.net mvc and linq.
Should i use LINQ skip and take method for paging, or do my self paging sql query script
which way more efficient than
4
votes
4answers
847 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 …
3
votes
2answers
133 views
What is the Equivalent syntax of mysql “ LIMIT “ clause in SQL Server
What is the Equivalent syntax of MySQL " LIMIT " clause in SQL Server . I would like to use it for doing paging of my results. (want to show records5 to 10 )
3
votes
5answers
213 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 …
3
votes
3answers
98 views
Paging design recommendation for asp.net and sqlserver 2005
I am relatively new to programming. My work basically revolves around data and analysis. I want to create a simple asp.net page which shows huge chunk of data from the database. There could be a …
3
votes
2answers
348 views
Efficient way to implement paged SQL result table in a Java desktop application
Hi all,
I need to build a table from SQL select result set. I want to add some paging functionality to the table because the result set can be very large. There was many discussions how to do the …
3
votes
3answers
319 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:
…
