@@ -256,11 +256,16 @@ SODA Collection Object
256
256
257
257
The hint parameter, if specified, supplies a hint to the database when
258
258
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.
264
269
265
270
.. note ::
266
271
@@ -270,7 +275,8 @@ SODA Collection Object
270
275
271
276
.. versionchanged :: 8.2
272
277
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).
274
280
275
281
276
282
.. method :: SodaCollection.insertOne(doc)
@@ -290,17 +296,23 @@ SODA Collection Object
290
296
291
297
The hint parameter, if specified, supplies a hint to the database when
292
298
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.
298
309
299
310
.. versionadded :: 7.0
300
311
301
312
.. versionchanged :: 8.2
302
313
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).
304
316
305
317
306
318
.. attribute :: SodaCollection.metadata
@@ -343,11 +355,16 @@ SODA Collection Object
343
355
344
356
The hint parameter, if specified, supplies a hint to the database when
345
357
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.
351
368
352
369
This method requires Oracle Client 19.9 or higher in addition to the usual
353
370
SODA requirements.
@@ -356,7 +373,8 @@ SODA Collection Object
356
373
357
374
.. versionchanged :: 8.2
358
375
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).
360
378
361
379
362
380
.. method :: SodaCollection.truncate()
@@ -565,15 +583,22 @@ SODA Operation Object
565
583
.. method :: SodaOperation.hint(value)
566
584
567
585
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.
573
595
574
596
As a convenience, the SodaOperation object is returned so that further
575
597
criteria can be specified by chaining methods together.
576
598
599
+ Use of this method requires Oracle Client 21.3 or higher (or Oracle Client
600
+ 19 from 19.11).
601
+
577
602
.. versionadded :: 8.2
578
603
579
604
0 commit comments