0
votes
3answers
43 views
Limit rows returned using TableAdapter (typed DataSets)
Does anyone know the best way to limit the number of rows returned when using typed TableAdapters? Options appear to be:
Pass "top X" as a parameter (can't do this until we're on SQLS2008
Issue a …
0
votes
0answers
18 views
Consolidated: SQL 2005+ Dynamic Pagination using SET ROWCOUNT or RowNumber() ?
I've a complex SP which applies multiple JOINs and lookup and come complex filters like comma-separated values, etc... On top of it, I've to deploy two complex yet performance-effective features:
1. …
0
votes
4answers
156 views
Measuring Progress of SSIS Data Flow
I am running a SSIS package to load say a million rows from a flat file, which uses a script task for complex transformations and a SQL Server table destination. I am trying to figure out the best way …
2
votes
4answers
474 views
How to show all rows in the jqGrid?
jqGrid exposes a property "rowNum" where you can set the number of rows to display for each page. How do you set the grid to just display ALL rows?
Right now I'm just setting the "rowNum" to …
0
votes
1answer
227 views
How can I do paging in Sybase without making temp table? (oracle rownum issue)
In Oracle, usually query like this for paging.
SELECT * FROM (SELECT *, rownum rid FROM TABLEA WHERE rownum <= #pageend#)
WHERE rid > #pagestart#
However, there is no "rownum" function in …
1
vote
2answers
117 views
Sql Server 2008 MERGE - best way to get counts
I'm wondering what y'alls would recommend as the best way to go about getting the action counts from a MERGE statement in Sql Server.
So, i.e. I run a MERGE which does some inserts, some updates and …
1
vote
3answers
321 views
How do I get a Flex AdvancedDatagrid to display just one row?
I have an AdvancedDatagrid, whose dataProvider is an ArrayCollection that contains 1 row of displayable stuff.
Flex continues to display about 6 rows, the top one filled, the rest blank.
I've set …
1
vote
8answers
543 views
Move SQL Server data in limited (1000 row) chunks
I'm writing a process that archives rows from a SQL Server table based on a datetime column. I want to move all the rows with a date before X, but the problem is that there are millions of rows for …
0
votes
1answer
866 views
How can I reload a datagrid in flash action script, after an xml file has loaded
Hi Everyone,
Does anyone know how to change the rowcount of a datagrid in flash after it has been created on the stage.
I am loading an xml file externally that contains the number of rows the …
1
vote
3answers
76 views
How do I include filtered rowcounts from two other tables in a query of a third?
I have a MySql database with three tables I need to combine in a query: schedule, enrolled and waitlist. They are implementing a basic class enrollment system.
Schedule contains the scheduled …
1
vote
3answers
207 views
Projections.RowCountInt64() returns 0 when i set SetFirstResult
rowCount returns 0 when query.SetFirstResult is different from 0 ?
if the result of pageIndex x pageSize = 0 // it gives me the rowCount but when it is not equal to 0, countCriteria gives me 0 …
