Kbase 19928: Not Exporting Progress Env Variables Causes Errors
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  15/10/2008 |
|
Status: Verified
SYMPTOM(s):
Errors are generated when running prodb command
prodb: dbutil was not found. (9138)
PROGRESS database empty was not found. error: 293
Progress environment variables set prior to running prodb command.
CAUSE:
Environment variables were not exported after being set.
FIX:
From the set command, the following environment variables seem set:
DLC=/usr/dlc91A
PATH=/usr/dlc91A/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/ttgadm/bin:/usr/bin/ In fact, they are not being exported. This can be tested as Follows:
$ DLC=/usr3/91A
$ prodb test empty
PROGRESS database empty was not found. error: 293
$ set |grep DLC
DLC=/usr3/91A Export the variable:
$ DLC=/usr3/91A; export DLC
$ prodb test empty
A database named mei already exists, do you want to replace it? (y
)
y
Database copied from /usr3/91A/empty. (1365)