Kbase P25705: Extractpl prodict.pl fails on 9.1B
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  08/02/2010 |
|
Status: Verified
SYMPTOM(s):
Extractpl prodict.pl fails on 9.1B
** Unable to create <file-name>, errno = <number> (609)
Unable to open/create new file <file-name>. (1924)
** Unable to create prodict/mss/_beauty.p, errno = 2 (609)
Unable to open/create new file prodict/mss/_beauty.p. (1924)
FACT(s) (Environment):
Progress 9.1B
CAUSE:
The Extractpl.Bat file supplied with 9.1B is missing a line.
It doesn't create the prodict/mss subdirectory, which causes the prolib -extract to fail.
FIX:
Edit the extractpl.bat file as follows:
1) Find the following section:
...
mkdir prodict\gui
mkdir prodict\misc
mkdir prodict\odb
...
2) Change it to read:
...
mkdir prodict\gui
mkdir prodict\misc
mkdir prodict\mss
mkdir prodict\odb
...