L
landers
Hi All,
I have a SQL Server stored procedure that return the results of two select
statements e.g.
SELECT *
FROM first_table
SELECT *
FROM second_table
The first_table has lots and lots of rows, so I only want to return the
first 100 from any start point. However, in the second table I want to
return all rows.
I have used a DataAdapter to fill a dataset, and implemented the overload
that allows you supply a DataSet, Start Record, Max Records and Source
Table.
If I specify a start record and a maximum number of records, will this
record criteria apply to the first SELECT, the last SELECT or BOTH?
Landers
I have a SQL Server stored procedure that return the results of two select
statements e.g.
SELECT *
FROM first_table
SELECT *
FROM second_table
The first_table has lots and lots of rows, so I only want to return the
first 100 from any start point. However, in the second table I want to
return all rows.
I have used a DataAdapter to fill a dataset, and implemented the overload
that allows you supply a DataSet, Start Record, Max Records and Source
Table.
If I specify a start record and a maximum number of records, will this
record criteria apply to the first SELECT, the last SELECT or BOTH?
Landers