Type Alias DoReloadExResult

The result and path to script log for a reload.

type DoReloadExResult = {
    qEndedWithMemoryConstraint?: boolean;
    qFailureData?: FailureData;
    qNbrOfLoadedRows?: number;
    qNbrOfStoredRows?: number;
    qScriptLogFile?: string;
    qSuccess?: boolean;
}
Index

Properties

qEndedWithMemoryConstraint?: boolean

true if memory limits were exhausted during reload.

qFailureData?: FailureData

Extra information (if available) in case reload was not successful.

qNbrOfLoadedRows?: number

Number of read rows during a reload

qNbrOfStoredRows?: number

Number of stored rows from a reload

qScriptLogFile?: string

Path to the script log file.

qSuccess?: boolean

The reload is successful if True.