In SQL Server, we use this sQL for set rowcount:
set rowcount
SET ROWCOUNT @top
or
select top (@top) * from Table
Access does not support using a parameter for SELECT TOP. You must write a literal value into the text of the SQL statement.
SELECT TOP