diff --git a/src/reference/asciidoc/jdbc.adoc b/src/reference/asciidoc/jdbc.adoc
index 192f9cf457..181f4cb3e0 100644
--- a/src/reference/asciidoc/jdbc.adoc
+++ b/src/reference/asciidoc/jdbc.adoc
@@ -805,9 +805,8 @@ The following listing calls out the attributes that matter for a stored procedur
id=""
ignore-column-meta-data="false"
is-function="false"
- max-rows="" <2>
- skip-undeclared-results="" <3>
- return-value-required="false" <4>
+ skip-undeclared-results="" <2>
+ return-value-required="false" <3>
Channel to which polled messages are sent.
If the stored procedure or function does not return any data, the payload of the `Message` is null.
Required.
-<2> Limits the number of rows extracted per query.
-Otherwise, all rows are extracted into the outgoing message.
-Optional.
-<3> If this attribute is set to `true`, all results from a stored procedure call that do not have a corresponding `SqlOutParameter` declaration are bypassed.
+<2> If this attribute is set to `true`, all results from a stored procedure call that do not have a corresponding `SqlOutParameter` declaration are bypassed.
For example, stored procedures can return an update count value, even though your stored procedure declared only a single result parameter.
The exact behavior depends on the used database.
The value is set on the underlying `JdbcTemplate`.
The value defaults to `true`.
Optional.
-<4> Indicates whether this procedure's return value should be included.
+<3> Indicates whether this procedure's return value should be included.
Since Spring Integration 3.0.
Optional.
====
-NOTE: When you declare a poller, you may notice the poller's `max-messages-per-poll` attribute.
-For information about how it relates to the `max-rows` attribute of the stored procedure inbound channel adapter, see "`<>`".
-The meaning of the attributes is the same as for the JDBC inbound channel adapter.
-
[[stored-procedure-outbound-channel-adapter]]
==== Stored Procedure Outbound Channel Adapter