Kbase 30204: How to Unfreeze Tables Globally?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  25/01/2001 |
|
Solution ID: P204
GOAL:
How to Update a frozen field in a database globally
FIX:
FOR EACH _file WHERE _frozen = yes and _hidden = no:
ASSIGN _frozen = no.
END.
FOR EACH _file:
DISPLAY _file-name _frozen.
END.