PROUTIL BULKLOAD qualifier
- Last Updated: February 11, 2026
- 2 minute read
- OpenEdge
- Version 13.0
- Documentation
PROUTIL BULKLOAD qualifier
Loads text data files into a database.
Note: The bulk loader works only with OpenEdge databases. Some non-OpenEdge
databases offer a similar bulk-loading tool. If such a tool is not available, use the
standard load option in the Data Administration tool or Data Dictionary. BULKLOAD
deactivates indexes on the tables being loaded. Indexes should be rebuilt before accessing
data.
Syntax
|
Parameters
- db-name
- Specifies the database you are using.
-yyn- Century Year Offset startup parameter; n specifies
a four-digit year (1900, for example) that determines the start
of a 100-year period in which any two-digit
DATEvalue is defined. The default is 1950, but the-yy nvalue must match the-yy nvalue used when the data was dumped. - fd-file
- Identifies the bulk loader description file you are using.
- tenant tenant-name
- Specifies that the BULKLOAD operation is to load data into the partition owned by
tenant-name. If tenant-name is not valid,
BULKLOAD exits with an error. Specifying
tenantis only allowed on databases enabled for multi-tenancy. -
groupgroup-name - Specifies that the BULKLOAD operation is to load data into the partition owned by
group-name. If group-name is not valid, BULKLOAD
exits with an error. Specifying
groupis only allowed on databases enabled for multi-tenancy. partitionpartition-name- Specifies that the BULKLOAD operation is to load data for the table
partition partition-name. If partition-name is not valid, BULKLOAD exits with an error. Specifying
partitionis only allowed on partitioned tables in databases enabled for table partitioning. composite initial- Specifies that the BULKLOAD operation is to load data for the
composite initial partition of the specified table. Specifying
composite initialis only allowed on partitioned tables in databases enabled for table partitioning. - datadir directory-name
- Specifies the location of the data (.d) files. If not specified, BULKLOAD looks in the current directory.
- -B n
- Blocks in Database Buffers startup parameter;
nspecifies the number of blocks.
Notes
- You must create the bulk loader description file and load the data definitions (.df) files for the database before you can run the Bulk Loader utility. See Dumping and Loading for information about creating the bulk loader description file and loading data definitions files.
- You cannot use BULKLOAD to load protected audit data. For more information on auditing and utility security and restrictions, see Auditing impact on database utilities
- You cannot use BULKLOAD to load LOBs.
- If you do not specify
grouportenantfor a multi-tenant table, BULKLOAD loads the data into the default partition. - For a partitioned table, if you specify a
partitionorcomposite initial, BULKLOAD loads data for that partition only, and reports on the number of records skipped that do not belong in the specified partition. If you do not specify a partition, but are loading a partitioned table, BULKLOAD loads each record into the appropriate partition of the table. - When loading a partitioned table, if any partitions cannot be written to, a warning is issued, and the load proceeds; if no partitions can be written to, BULKLOAD exits with an error message.