How to change the Freeze / Unfreeze status of all tables in a database using the progress editor?
What do you mean by Freeze/Unfreeze?
"Freezing/Unfreezing" applies to tables. It means changing the value of _file._frozen. When an _file record is frozen, its schema definition can't be altered.So far as I know the only way to do it is via proutil
Database Schema Admin DataServer Utilities PRO/SQL Tools
┌────────────────────────────────────┐
│ Editor for Parameter Files... │
│ Quoter Functions -> │
│ Generate Include Files -> │
│ ────────────────────────────────── │
┌──────│ Edit OpenEdge Auto-Connect List... │
│ │ Freeze/Unfreeze... │
│ You m│ Index Deactivation... │
│ your │ ────────────────────────────────── │
│ │ Information... │
└──────└────────────────────────────────────┘
for each dictdb._file exclusive-lock where _file._tbl-type = 't':
_file._frozen = no. // unfreeze
end.