Data export utility
- Last Updated: August 23, 2021
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
This utility is an ABL procedure that provides an administrator with a tool that can output Domain records from an OpenEdge database. This output can be used as input for an STS application's Domain configuration file and for the Domain keystore file generator (gendomreg).
The procedure writes two log files, which are created in the
directory specified by the FOLDER parameter:
- domain_dump_runner.log — a log file for the procedure (independent of the data export)
- domain_dump.log — a log file for the actual data export
Syntax
_progres -p "OpenEdge/DataAdmin/Util/dump_domains.p"
-db db-name [ -db db-name [...]
] -param "PARAM_NAME:VALUE [,PARAM_NAME:
VALUE [,...] ]"
Parameters
The following table contains a description of the supported parameters and their valid values:
| Parameter | Valid values | Notes |
|---|---|---|
LOG |
Any of the names in
OpenEdge.Core.LogLevelEnum |
If no value is passed in, or the value is invalid (no in the enum), the WARN level is used. |
FOLDER |
An existing folder into which data is exported and log files are written | If no value is specified, or if the value is invalid (i.e. the
folder does not exist), the WRKDIR environment
variable is queried and if not found, the
SESSION:TEMP-DIR is used |
MAKESSO |
A logical TRUE/FALSE
value |
The ABL LOGICAL( ) function is used to evaluate
the value. The default is FALSE if no value is
specified or if the value doesn't resolve to true or false. |
CONFIG-FILE |
A filename that will be created | Used for the domain configuration file. Sets the export utility's
DomainConfigFile property. |
KEYSTORE-FILE |
A filename that will be created | Used for the domain keystore. Sets the export utility's
DomainKeystoreFile property. |