|
| ||||||
|
This dialog controls logging, restart and cursor options.
LoggingNo loggingErrors are not logged to a file. This is the default. Log actions to fileActions such as job start and user name, job end, restart parameters, the query being used, and any erroneous records are all appended to the log file. A typical log file looks like this:
RestartNo restartAll records are processed. This is the default. Restart from recordDataPipe starts changes from the specified record. This can be used to restart a job that you cancelled. Cursor and Lock optionsNote: DataPipe always moves forward through a result set, so it does not require options that provide bi-directional scrolling. Cursor locationDetermines whether to use a client-side or server-side cursor library. DataPipe's default is Use Server. A client-side cursor offers more flexibility. All data is retrieved to the local machine and then operated on there, allowing operations not normally supported by servers like sorting and resorting the data and additional filtering. SQL statements are executed at the server, so for statements that restrict the result set with a WHERE clause, only the reduced result set is retrieved to a local cursor. A server-side cursor offers less flexibility, but may be more advantageous (or necessary) for large result sets. Using a server-side cursor becomes necessary when the sheer size of a result set exceeds the available disk space that would be needed to create the client-side cursor. Also, many servers only support unidirectional cursors. This would preclude moving the record pointer in the dataset backward (even one record) through the result set. Cursor typeIndicates the type of cursor used for the record set when it is opened. Cursor type affects directional scrolling through a record set and the visibility of changes made by other users. DataPipe's default is Dynamic.
Note: Only Static is supported if the Cursor Location is set to Use Client. Note: If the requested cursor type is not supported by the provider, the provider may return another cursor type. Lock typeSpecifies the type of record lock used during editing. DataPipe's default is Optimistic.
Note: To use a specific locking scheme, the provider and database type must support that locking scheme. Use Unspecified to have the provider use the default locking scheme. Use the Lock Type Batch Optimistic to open a record set in batch update mode.
|
|