Consultor Eletrônico



Kbase 13592: DCL-W-IVVERB, unrecognized command verb, \PROGRESS\ VMS err
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   10/05/1998
DCL-W-IVVERB, unrecognized command verb, \PROGRESS\ VMS err

%DCL-W-IVVERB, unrecognized command verb - check validity
and spelling \PROGRESS
This error is most commonly seen when trying to start a
server.

The error means VMS does not understand any PROGRESS
commands.

There are 2 ways to resolve this error.

1. In the LOGIN.COM, if checking for non-interactive
is done, put the line $ SET COMMAND DLC:PROGRESS.CLD
in both the interactive and the non-interactive section.

$ IF F$MODE() .NES. "INTERACTIVE" THEN GOTO NONINTER
$ SET COMMAND DLC:PROGRESS.CLD
.
.
.
.
$ NONINTER:
$ SET COMMAND DLC:PROGRESS.CLD

== OR ==

The $ SET COMMAND DLC:PROGRESS.CLD can be placed
before any checking is done.

$ SET COMMAND DLC:PROGRESS.CLD
$ IF F$MODE() .NES. "INTERACTIVE" THEN GOTO NONINTER


2. Another way to resolve this error is to install the
PROGRESS.CLD file into the DCLTABLES. To do this, use
the following variation of the SET COMMAND displayed in
the Installation Notes:

$ SET COMMAND/REPLACE=SYS$LIBRARY:DCLTABLES -
_$ /OUTPUT=SYS$LIBRARY:DCLTABLES DLC:PROGRESS.CLD

For this new DCLTABLES to take effect all processes
accessing DCLTABLES must logout and log back in, or
a reboot of the system must be done.


Progress Software Technical Support Note # 13592