Kbase P126227: How to determine if a Progress online backup is running
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  09/10/2007 |
|
Status: Unverified
GOAL:
How to determine if a Progress online backup is running
GOAL:
How to determine if an online probkup is running
FACT(s) (Environment):
All Supported Operating Systems
Progress 9.x
OpenEdge 10.x
FIX:
Within Promon:
1. Start promon from a command prompt.
promon <dbname>
2. Select menu options 1. User Control -> 2. Display all entries. Look for a user with a Type called "BKUP".
Using VST's from the 4GL/ABL:
FIND FIRST _Connect WHERE _Connect._Connect-Type = "BKUP" NO-LOCK NO-ERROR.
IF AVAILABLE _Connect THEN
MESSAGE "Backup is running" VIEW-AS ALERT-BOX.
ELSE
MESSAGE "Backup is not running" VIEW-AS ALERT-BOX.