@@ -256,11 +256,16 @@ SODA Collection Object
256256
257257 The hint parameter, if specified, supplies a hint to the database when
258258 processing the SODA operation. This is expected to be a string in the same
259- format as SQL hints but without any comment characters, for example
260- ``hint="MONITOR" ``. While you could use this to pass any SQL hint, the
261- hints ``MONITOR `` (turn on monitoring) and ``NO_MONITOR `` (turn off
262- monitoring) are the most useful. Use of the hint parameter requires Oracle
263- Client 21.3 or higher (or Oracle Client 19 from 19.11).
259+ format as a SQL hint but without any comment characters, for example
260+ ``hint="MONITOR" ``. Pass only the hint ``"MONITOR" `` (turn on monitoring)
261+ or ``"NO_MONITOR" `` (turn off monitoring). See the Oracle Database SQL
262+ Tuning Guide documentation `MONITOR and NO_MONITOR Hints
263+ <https://www.oracle.com/pls/topic/lookup?
264+ ctx=dblatest&id=GUID-19E0F73C-A959-41E4-A168-91E436DEE1F1> `__
265+ and `Monitoring Database Operations
266+ <https://www.oracle.com/pls/topic/lookup?
267+ ctx=dblatest&id=GUID-C941CE9D-97E1-42F8-91ED-4949B2B710BF> `__
268+ for more information.
264269
265270 .. note ::
266271
@@ -270,7 +275,8 @@ SODA Collection Object
270275
271276 .. versionchanged :: 8.2
272277
273- The parameter `hint ` was added.
278+ The parameter `hint ` was added. Use of the hint parameter requires
279+ Oracle Client 21.3 or higher (or Oracle Client 19 from 19.11).
274280
275281
276282.. method :: SodaCollection.insertOne(doc)
@@ -290,17 +296,23 @@ SODA Collection Object
290296
291297 The hint parameter, if specified, supplies a hint to the database when
292298 processing the SODA operation. This is expected to be a string in the same
293- format as SQL hints but without any comment characters, for example
294- ``hint="MONITOR" ``. While you could use this to pass any SQL hint, the
295- hints ``MONITOR `` (turn on monitoring) and ``NO_MONITOR `` (turn off
296- monitoring) are the most useful. Use of the hint parameter requires Oracle
297- Client 21.3 or higher (or Oracle Client 19 from 19.11).
299+ format as a SQL hint but without any comment characters, for example
300+ ``hint="MONITOR" ``. Pass only the hint ``"MONITOR" `` (turn on monitoring)
301+ or ``"NO_MONITOR" `` (turn off monitoring). See the Oracle Database SQL
302+ Tuning Guide documentation `MONITOR and NO_MONITOR Hints
303+ <https://www.oracle.com/pls/topic/lookup?
304+ ctx=dblatest&id=GUID-19E0F73C-A959-41E4-A168-91E436DEE1F1> `__
305+ and `Monitoring Database Operations
306+ <https://www.oracle.com/pls/topic/lookup?
307+ ctx=dblatest&id=GUID-C941CE9D-97E1-42F8-91ED-4949B2B710BF> `__
308+ for more information.
298309
299310 .. versionadded :: 7.0
300311
301312 .. versionchanged :: 8.2
302313
303- The parameter `hint ` was added.
314+ The parameter `hint ` was added. Use of the hint parameter requires
315+ Oracle Client 21.3 or higher (or Oracle Client 19 from 19.11).
304316
305317
306318.. attribute :: SodaCollection.metadata
@@ -343,11 +355,16 @@ SODA Collection Object
343355
344356 The hint parameter, if specified, supplies a hint to the database when
345357 processing the SODA operation. This is expected to be a string in the same
346- format as SQL hints but without any comment characters, for example
347- ``hint="MONITOR" ``. While you could use this to pass any SQL hint, the
348- hints ``MONITOR `` (turn on monitoring) and ``NO_MONITOR `` (turn off
349- monitoring) are the most useful. Use of the hint parameter requires Oracle
350- Client 21.3 or higher (or Oracle Client 19 from 19.11).
358+ format as a SQL hint but without any comment characters, for example
359+ ``hint="MONITOR" ``. Pass only the hint ``"MONITOR" `` (turn on monitoring)
360+ or ``"NO_MONITOR" `` (turn off monitoring). See the Oracle Database SQL
361+ Tuning Guide documentation `MONITOR and NO_MONITOR Hints
362+ <https://www.oracle.com/pls/topic/lookup?
363+ ctx=dblatest&id=GUID-19E0F73C-A959-41E4-A168-91E436DEE1F1> `__
364+ and `Monitoring Database Operations
365+ <https://www.oracle.com/pls/topic/lookup?
366+ ctx=dblatest&id=GUID-C941CE9D-97E1-42F8-91ED-4949B2B710BF> `__
367+ for more information.
351368
352369 This method requires Oracle Client 19.9 or higher in addition to the usual
353370 SODA requirements.
@@ -356,7 +373,8 @@ SODA Collection Object
356373
357374 .. versionchanged :: 8.2
358375
359- The parameter `hint ` was added.
376+ The parameter `hint ` was added. Use of the hint parameter requires
377+ Oracle Client 21.3 or higher (or Oracle Client 19 from 19.11).
360378
361379
362380.. method :: SodaCollection.truncate()
@@ -565,15 +583,22 @@ SODA Operation Object
565583.. method :: SodaOperation.hint(value)
566584
567585 Specifies a hint that will be provided to the SODA operation when it is
568- performed. This is expected to be a string in the same format as SQL hints
569- but without any comment characters. While you could use this to pass any SQL
570- hint, the hints ``MONITOR `` (turn on monitoring) and ``NO_MONITOR `` (turn
571- off monitoring) are the most useful. Use of this method requires Oracle
572- Client 21.3 or higher (or Oracle Client 19 from 19.11).
586+ performed. This is expected to be a string in the same format as a SQL hint
587+ but without any comment characters, for example ``hint("MONITOR") ``. Pass
588+ only the hint ``"MONITOR" `` (turn on monitoring) or ``"NO_MONITOR" `` (turn
589+ off monitoring). See the Oracle Database SQL Tuning Guide documentation
590+ `MONITOR and NO_MONITOR Hints
591+ <https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=GUID-19E0F73C-A959-41E4-A168-91E436DEE1F1> `__
592+ and `Monitoring Database Operations
593+ <https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=GUID-C941CE9D-97E1-42F8-91ED-4949B2B710BF> `__
594+ for more information.
573595
574596 As a convenience, the SodaOperation object is returned so that further
575597 criteria can be specified by chaining methods together.
576598
599+ Use of this method requires Oracle Client 21.3 or higher (or Oracle Client
600+ 19 from 19.11).
601+
577602 .. versionadded :: 8.2
578603
579604
0 commit comments