123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #**************************************************************************
- #
- # Licensed Material - Property Of IBM
- #
- # "Restricted Materials of IBM"
- #
- # IBM Informix Dynamic Server
- # (c) Copyright IBM Corporation 1996, 2010 All rights reserved.
- #
- # Title: plconfig
- # Description: INFORMIX Parallel Loader Configuration Parameters
- #
- #**************************************************************************
- # System Configuration
- CONVERTTHREADS 1 # Number of conversion threads per device
- CONVERTVPS 6 # Max number of vps for converters (total)
- # Buffer Configuration
- STRMBUFFSIZE 64 # Buffer size for server stream buffer (kbytes)
- STRMBUFFERS 8 # Number of server stream buffers per device
- AIOBUFSIZE 64 # Buffer size for tape/file I/O (kbytes)
- AIOBUFFERS 8 # Number of buffers for I/O per device
- HPLTRUNCATEDATA 0 # Control the behaviour when data to load
- # or unload contains invalid characters.
- # This is a bitwise combination of modes
- # for load and unload. Note that we do not
- # permit loading invalid characters.
- #
- # 0 : Legacy behaviour. Load/unload will abort
- # if invalid characters are found in the
- # data to load or unload.
- # 1 : Attempt to load anything by truncating
- # data at the position we detected the
- # corruption.
- # 2 : Unload the whole data including
- # invalid characters.
- HPLROWIDRETRY 3 # How many times should we retry to insert
- # data that failed due to a duplicate rowid.
- # This means we try with a different rowid
- # value
- HPLSETFILEGIDUSERGID 0 # Value 1: unload files, log and reject files
- # will have group id equal to user gid.
- # Value 0: gid will be informix.
|