Consultor Eletrônico



Kbase P43878: An alternative away to retrieve ?Record Locking Table? information.
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   10/16/2008
Status: Unverified

GOAL:

An alternative away to retrieve “Record Locking Table” information.

FIX:

Create a text file (this sample uses findlock.txt as the file name)with the following content

R&D
5
1
9999
t
1
6
1
X

Run the code below

OS-COMMAND SILENT "promon sp2k<c:\progress\wrk\db\findlock.txt>c:\output.txt".
DEF VAR inline AS CHAR FORMAT "x(78)".
INPUT FROM "c:\OUTPUT.txt".
REPEAT :
IMPORT UNFORMATTED inline.
DISP inline FORMAT "x(77)".
END.
INPUT CLOSE.