Property | Use |
---|---|
Encoding | Type of encoding to use with source and target files. Default value is OEM. |
SQL Output | Specifies bound or unbound mode and whether or not to write SQL statements to a SQL log. The bound mode is faster, as bind variables are used. The available options are: • Target Only (default) - Use bound mode, which uses bind variables. SQL statements are sent to the target only. • Target Only (Unbound Mode) - Use unbound mode. Does not use bind variables and sends the literal SQL statement to the database engine. SQL statements are sent to the target and not to the SQL log file specified in the SQL Log property. • Target and SQL Log - Sends SQL statements to the target and the SQL log file specified in the SQL Log property. • SQL Log Only - Sends SQL statements only to the SQL log file specified in the SQL Log property. |
SQL Log | Specifies the name of the log file. The default value is sql.log, in the default installation directory. To use a different log file, browse and select the file, or enter the path and file name. Note: SQL statements are sent to the SQL Log file only if the SQL Output property is set to either Target and SQL Log or SQL Log Only. |
UpdateNullFields | Indicates if null values are sent to the database when inserting or updating records. The default value is TRUE. If you select FALSE, null values are not sent to the database when you insert or update records. This forces the connector to operate in unbound mode, which may cause slower performance. Best Practice — If fields in the target record are not mapped, then the null values are passed to the target. If you do not want to write to these fields, then it is recommended to set the value for the UpdateNullFields property to FALSE. |
SystemTables | When set to TRUE, this property allows you to see all tables that were created by the DBA. That is, the system table names appear in the table list. Default value is FALSE. Note: This property is applicable only if the user is logged onto the database as a DBA. Only the DBA has access to system tables. |
Views | When set to TRUE, this property lists all the view names along with the table names. Default value is TRUE. Note: This property supports only Append and DeleteAndAppend output modes and does not support the Replace output mode. |
AutoCommit | When set to TRUE, it automatically commits changes as they are made by each SQL statement, instead of waiting until the end of the transaction. Also, if this option is set to TRUE, you cannot roll back changes after they are done. It will overwrite the CommitFrequency value, which means that the changes are committed by each SQL statement irrespective of the value set for CommitFrequency. The default value is FALSE. |
DriverCompletion | Controls how the ODBC driver prompts for missing information. The available options are: • prompt - asks the user all information. • complete (default) - asks the user for information they forgot to enter. • complete required - asks the user only for information required to complete the connection. • no prompt - does not asks the user for any information. |
IdentifierQuotes | All databases have what are called quoted identifiers. You enclose identifiers in quotes to make the SQL statement parseable and to distinguish between columns and character data. For example, Oracle uses double quotes (") for column and table names and single quotes (') for character data. In a SQL statement, you should enclose identifiers containing special characters or match keywords in identifier quote characters; (also known as delimited identifiers in SQL-92). For example, the Accounts Receivable identifier is in quotes in the following SELECT statement: SELECT * FROM "Accounts Receivable" If you do not use identifier quotes, the parser assumes there are two tables, Accounts and Receivable and return a syntax error that they are not separated by a comma. The available options are: • Default • " • |
ModifyDriverOptions | Allows you to store the ODBC driver connection information. The available options are: • TRUE (default) - Store the ODBC connection information. • FALSE - Prompt for connection information each time the transformation is run. |
DriverOptions | Specify valid ODBC driver string connection options. There is no default value for this property. |
MaxDataLength | Specifies the maximum data length for long data types. The default value is 1 MB. You can reset this number based on your available memory and target requirements. Some ODBC drivers have maximum data length limitations. If you choose an ODBC source or target connector and the default setting is not 1 MB, the integration platform sets the value for that particular ODBC driver. Under those conditions, do not set the MaxDataLength property to a higher value. |
TransactionIsolation | Allows you to specify an isolation level to use when reading from or writing to a database table with ODBC. The ANSI SQL 2 standard defines three specific ways in which serializability of a transaction may be violated: P1 (Dirty Read), P2 (Nonrepeatable Read), and P3 (Phantoms). The available options are: • read uncommitted – Permits P1, P2, and P3. • read committed – Permits P2 and P3. Does not permit P1. • repeatable read – Permits P3. Does not permit P1 and P2. • serializable (default) – Does not permit P1, P2 or P3. For further details about TransactionIsolation levels, refer to IBM DB2 Universal Database ODBC documentation. |
ArraySize | Determines the number of rows to be sent to the server at a time. The default value is 1000. Larger values will buffer multiple rows and send them all at once. While this improves the speed, it affects error reporting (a server error will not be detected or reported until the next batch of records is sent to the server). The maximum value allowed for this property is 100000. While the connector allows a high value to be set, many drivers have lower limits. The connector will log a message indicating if the driver is forcing a lower value for the array size. In addition, the connector does not support arrays when there is a LOB-type field in the table, or when the (maximum) length of a character-type field is longer than 32767 characters. In these cases, a message will be logged indicating the array size has been reduced to 1. Due to the way the connector attempts to support older drivers, the array support requires BulkOperations and UseCursors is set to True or both must be set to False. If BulkOperations is False and UseCursors is True, then the array size is ignored and a message is logged indicating this condition. |
StripLeadingBlanks | Strips out leading blanks in all data fields if set to true. Default is false. |
StripTrailingBlanks | Strips out trailing blanks in all data fields if set to true. Default is false. |