Review Preinstallation Documentation: Pre-Installation Requirements
Name | Description |
---|---|
| Specifies the port number of the secondary database server in an HDR pair. The port number is listed in the /etc/services file. |
| Sets the secondary host name or host IP address for HDR connection redirection |
| Specifies the secondary database server in an HDR pair to which an explicit or implicit connection is made by a client application, if the primary database server is unavailable |
| When set to 'true', secondary server properties are used to connect to the secondary server in an HDR pair, if the primary server is unavailable. |
| Specifies where temporary files for handling smart large objects are created. You must supply an absolute path. |
| Uses 56-bit encryption to send the password to the server. If 'PASSWORD' is specified, the user-provided password is encrypted using 56-bit encryption when it is passed from the client to the database server. There is no default setting. The setting is supported in 7.31, 8.3+, and 9.x and later versions of the Informix database server. |
| Specifies an HTTP proxy server. |
| When set to 'FILE', specifies that database information (such as host-name, port-number, user, and password) is specified in a sqlhosts file. When set to 'LDAP', specifies that this information is specified in an LDAP server |
| Example: http://host-name:port-number/sqlhosts.ius or file://D:/local/myown/sqlhosts.ius |
| Example: ldap:host-name:port-number |
| Example: Informix-base-DN |
| A valid LDAP username |
| A valid LDAP password |
| When used in conjunction with other LDAP keywords, the SQLH_LOC keyword indicates where an LDAP lookup should occur. SQLH_LOC can have a value of either CLIENT or PROXY. If the value is CLIENT, the driver performs the LDAP lookup on the client side. If the value is PROXY, the proxy performs the lookup on the server side. If no value is specified, the driver uses CLIENT as the default value. |
| Overrides the default setting for the size of the fetch buffer for all data except large objects. The default size is 4096 bytes. |
| In IBM Informix Extended Parallel Server Version 8.4, overrides the default size of the tuple buffer and allows it to be increased up to 2GB. |
| When set to 1, specifies that the Java program is connecting to an IBM Informix |
vIfxLOBCACHE | Determines the buffer size for large object data that is fetched from the database server Possible values are: 1) Numbers greater than zero. The maximum number of bytes is allocated in memory to hold the data. If the data size exceeds the LOBCACHE value, the data is stored in a temporary file. If a security violation occurs during creation of this file, the data is stored in memory. 2) Zero. The data is always stored in a file. If a security violation occurs, the driver makes no attempt to store the data in memory. 3) A negative number. The data is always stored in memory. If the required amount of memory is not available, an error occurs. |
| When set to 1, enables bulk inserts. |
| When set to true, specifies that strings set off by double quotes are delimited identifiers. |
| Specifies the stack size, in kilobytes, that the database server uses for a particular client session. |
| Specifies the dbspaces in which temporary tables are built. |
| Specifies the locale of the database. The IBM Informix JDBC Driver uses this variable to perform code-set conversion between Unicode and the database locale. Together with the CLIENT_LOCALE variable, the database server uses this variable to establish the server processing locale. The DB_LOCALE and CLIENT_LOCALE values must be the same, or their code sets must be convertible. |
| Specifies the locale of the client that is accessing the database. Provides defaults for user-defined formats such as the GL_DATE format. User-defined data types can use it for code-set conversion. Together with the DB_LOCALE variable, the database server uses this variable to establish the server processing locale. The DB_LOCALE and CLIENT_LOCALE values must be the same, or their code sets must be convertible. |
| Specifies the end-user formats of values in DATE columns supported for backward compatibility; GL_DATE is preferred. |
| Specifies the end-user formats of values in DATE columns This variable is supported in Informix database server versions 7.2x, 8.x, 9.x, and 10.x. |
| Enables you to specify the appropriate expansion for one- or two-digit year DATE values. |
| When set to 1, enables the use of the shared-statement cache in a session. This feature can reduce memory consumption and speed query processing among different user sessions. The driver does not use this variable. It just passes the value to the server. |
| When set to YES, prevents default table and routine privileges from being granted to the PUBLIC user when a new table or routine is created in a database that is not ANSI compliant. Default is NO. |
| Specifies the full pathname of the directory into which you want IBM Informix Enterprise Gateway products to place their temporary files and temporary tables. The driver does not use this variable. It just passes the value to the server. |
| Specifies one or more directories to which the database server writes the temporary files it uses when performing a sort. |
| Enables the database server to improve the performance of the parallel-process sorting package by allocating more threads for sorting. |
| Specifies the amount of system disk space that the UPDATE STATISTICS statement can use when it simultaneously constructs multiple-column distributions. |
| Determines the degree of parallelism used by the database server. |
| Determines whether the optimizer allows query optimization directives from within a query. This variable is set on the client. The driver does not use this variable. It just passes the value to the server. |
| Specifies whether the query optimizer allows external query optimization directives from the sysdirectives system catalog table to be applied to queries in existing applications. The default is OFF. Possible values: 1) ON External optimizer directives accepted, 2) OFF External optimizer directives not accepted, 3) 1 External optimizer directives accepted, and 4) 0 External optimizer directives not accepted. |
| Specifies the join method that the query optimizer uses. |
| Specifies the maximum number of additional connection attempts that can be made to each database server by the client during the time limit specified by the value of INFORMIXCONTIME. |
| Sets the timeout period for an attempt to connect to the database server. If a connection attempt does not succeed in this time, the attempt is aborted and a connection error is reported. The default value is 0 seconds. This variable adds timeouts for blocking socket methods and for socket connections. |
| Specifies the size of the memory cache for the staging-area blobspace of the client application. |
| Specifies the name of the configuration file used by the high-performance loader. |
| Specifies the directories that should be searched for executable programs. |
| Specifies the pathname for smart-large-object handles (which identify the location of smart large objects such as BLOB, CLOB, and BOOLEAN data types). The driver does not use this variable. It just passes the value to the server. |
| Specifies the query performance goal for the optimizer. Set this variable in the user environment before you start an application. The driver does not use this variable. It just passes the value to the server. |
| When set to 1, checks for Informix extensions to ANSI-standard syntax. |
| The value of this variable determines whether code-set conversion is done in memory or in temporary files. If set to 0, code-set conversion uses temporary files. If set to a value greater than 0, code-set conversion occurs in the memory of the client computer, and the value represents the number of bytes of memory allocated for the conversion. |
| The default value is 0 (do not wait for the lock). Sets the value of Informix-specific variable IFX_LOCK_MODE_WAIT. Possible values: 1d) '-1' WAIT until the lock is released, 2) '0' DO NOT WAIT, end the operation, and return with error, and 3) 'nn' WAIT for nn seconds for the lock to be released. |
| Sets the value of Informix-specific variable IFX_ISOLATION_LEVEL. Possible values: 1) '1' - Dirty Read (equivalent to TRANSACTION_READ_UNCOMMITTED), 2) '2' - Committed Read (equivalent to TRANSACTION_READ_COMMITTED), 3) '3' - Cursor Stability (equivalent to TRANSACTION_READ_COMMITTED), 4) '4' - Repeatable Read (equivalent to TRANSACTION_REPEATABLE_READ) |