Consultor Eletrônico



Kbase P38568: How to display all the database trigger using 4GL?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   22/08/2003
Status: Unverified

GOAL:

How to display all the database trigger using 4GL?

FIX:

You can access to _file-trig in order to gather this information. For instance:


FOR EACH _file-trig NO-LOCK, EACH _file OF _file-trig NO-LOCK:
DISPLAY _file._file-name.
DISPLAY _file-trig.
END.