A
AlexeyU
hi
I have a field with such rowsource:
Me!MYFIELD.RowSource = "exec MY_STORED_PROC 1"
My stored proc return about 60000 records (in query analyser)
but in ADP return only 10000.
MaxRecords=0
return 10000 records
MaxRecords= any other not 0 - 1, 10, 500, 20000, 10000000
return 10000 records
in stored proc:
set rowcount 0
return 10000 records
set rowcount 500000
return 10000 records
and only when i set rowcount to number smaller then 10000 it returns it
number of rows
set rowcount 20
return 20 records
How return all records?
thanks
-
I have a field with such rowsource:
Me!MYFIELD.RowSource = "exec MY_STORED_PROC 1"
My stored proc return about 60000 records (in query analyser)
but in ADP return only 10000.
MaxRecords=0
return 10000 records
MaxRecords= any other not 0 - 1, 10, 500, 20000, 10000000
return 10000 records
in stored proc:
set rowcount 0
return 10000 records
set rowcount 500000
return 10000 records
and only when i set rowcount to number smaller then 10000 it returns it
number of rows
set rowcount 20
return 20 records
How return all records?
thanks
-