dbunload type enumeration

The type of unload being performed, as used by the an_unload_db structure.

Syntax
enum {
    UNLOAD_ALL,
    UNLOAD_DATA_ONLY,
    UNLOAD_NO_DATA,
    UNLOAD_NO_DATA_FULL_SCRIPT
};
Parameters
Value Description
UNLOAD_ALL Unload both data and schema.
UNLOAD_DATA_ONLY Unload data. Do not unload schema. Equivalent to dbunload -d option.
UNLOAD_NO_DATA No data. Unload schema only. Equivalent to dbunload -n option.
UNLOAD_NO_DATA_FULL_SCRIPT No data. Include LOAD/INPUT statements in reload script. Equivalent to dbunload -nl option.
See also