; $Id: dmrecov.e,v 5.2 1998/03/05 23:10:25 ziff Exp $
;
; Recovery subsystem error
;
;** Documentum DocuServer
;** Confidential Property of Documentum, Inc.
;** (c) Copyright Documentum, Inc., 1991-1998
;** All rights reserved.
;**
;
.facility DM_RECOVERY
.severity TRACE
.severity INFORMATION
.severity WARNING
.severity ERROR
NOT_SYS_ADMIN "Only the system administrator may run recovery procedures."
;
; CAUSE: Someone other than the system administrator attempted to use
; the RUN_RECOVERY_PROCS apply method.
; ACTION: Run the method as system administrator.
;
ARG_WRONG_TYPE "The parameter to RUN_RECOVERY_PROCS was not a recovery object."
;
; CAUSE: For the RUN_RECOVERY_PROCS apply method, a parameter
; was supplied that was not of the required type.
; ACTION: Supply a parameter that is a recovery object, or supply NULL,
; and all recovery objects will be run.
;
BAD_ARG "The parameter to RUN_RECOVERY_PROCS was bad, may have been deleted."
;
; CAUSE: For the RUN_RECOVERY_PROCS apply method, a parameter
; was supplied that was not fetchable or bad.
; ACTION: The parameter may have been deleted or mistyped.
; Make sure it exists, then try again.
;
.severity FATAL
REG_TOOMANY "Too many recovery procedures have been registered."
;
; CAUSE: There is an internal maximum size for the table of
; registered recovery procedures.
; ACTION: Increase the size of the internal table (TABLE_SIZE_LIMIT
; in dmrecov.cxx).
;
REG_DUPDEFN S "The function (%s) has already been registered as a recovery procedure."
;
; CAUSE: This function is already registered.
; ACTION: Find out where it is registered, and decide which registration
; is valid.
;
NOT_FOUND "A recovery procedure was requested but not found in the table."
;
; CAUSE: The function was never registered.
; ACTION: Find out where it ought to be registered, and register it.
;
NO_CONNECTION "Unable to get a database connection to create a recovery object."
;
; CAUSE: Probable database connectivity or resource problem.
; ACTION: Check system logs.
;
SAVE_FAILED "Unable to save recovery object."
;
; CAUSE: Probable database connectivity or resource problem.
; ACTION: Check system logs.
;
CANT_COMMIT "Unable to commit save of recovery object."
;
; CAUSE: Probable database connectivity or resource problem.
; ACTION: Check system logs.
;
CANT_DESTROY S "Unable to desrtoy recovery object %s."
;
; CAUSE: Probable database connectivity or resource problem.
; ACTION: Check system logs.
;