Skip Headers

Oracle® Objects for OLE Developer's Guide
10g Release 1 (10.1)

Part Number B10118-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Master Index
Master Index
Go to Feedback page
Feedback

Tuning and Customization

Data access can be tuned and customized by altering a Dynaset's cache and fetch parameters. Setting FetchLimit to a higher value increases the number of rows that are fetched with each request, thus reducing the number of network trips to the Oracle Server, which in turn improves performance.

The cost of increasing the FetchLimit is that it increases memory requirements on the client-side, and causes more data to be swapped to and from the temporary cache file on disk. So the proper FetchLimit should be set according to the client computer configuration and the anticipated size of the query result.

FetchLimit can be set in the following ways:

· By using the CreateCustomDynaset method.

· By modifying parameters of the OO4O entry in the Windows Registry. For Windows, the Registry key is HKEY_LOCAL_MACHINE and the subkey is software\oracle\HOMEID\oo4o, where ID is the appropriate Oracle Home. The OO4O installation creates the following section in the Registry:

"FetchLimit" = 100

See Also