From 8115189b19a7bc765a65de32e20046510348d74c Mon Sep 17 00:00:00 2001 From: Gavin King Date: Tue, 21 Jan 2025 12:52:32 +0100 Subject: [PATCH] mention Oracle defaultRowPrefetch in WARNING --- documentation/src/main/asciidoc/introduction/Tuning.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/src/main/asciidoc/introduction/Tuning.adoc b/documentation/src/main/asciidoc/introduction/Tuning.adoc index 546787227b8c..082bf6b933e8 100644 --- a/documentation/src/main/asciidoc/introduction/Tuning.adoc +++ b/documentation/src/main/asciidoc/introduction/Tuning.adoc @@ -122,7 +122,7 @@ The default fetch size can be overridden for a given query by calling link:{doc- [WARNING] ==== The Oracle JDBC driver defaults to a JDBC fetch size of 10. -You should _always_ set explicitly `hibernate.jdbc.fetch_size` if you're using Oracle. +You should _always_ set explicitly `hibernate.jdbc.fetch_size` if you're using Oracle, or, even better, specify the parameter `defaultRowPrefetch` in the JDBC connection URL. ==== [[statement-batching]]