VIEW FILEORG command: Difference between revisions

From m204wiki
Jump to navigation Jump to search
Snehal (talk | contribs)
No edit summary
Snehal (talk | contribs)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
== VIEW/DISPLAY Command Now Identifies In-Memory and Imagine Files ==
This change was made in '''Model 204 Version 8.0'''.
== What's New ==
== What's New ==


Line 5: Line 10:
For Example:
For Example:


===== Before this change: =====
==== Before this change: ====




  <small>FILEORG X'0008' (Hashed) File organization</small>
  <small>FILEORG X'0008' (Hashed) File organization</small>


===== After this change: =====
==== After this change: ====




Line 20: Line 25:
'''Note:''' Files that are not in-memory or Imagine files continue to display exactly as before — no change in output for standard disk-resident files.
'''Note:''' Files that are not in-memory or Imagine files continue to display exactly as before — no change in output for standard disk-resident files.


=== Benefit ===
== Benefit ==


In-memory and Imagine files behave differently from traditional disk-resident files, particularly with respect to I/O and recovery. This enhancement lets administrators and support staff quickly confirm a file's storage type using the standard VIEW FILEORG command, without needing to reference the file's original definition.
In-memory and Imagine files behave differently from traditional disk-resident files, particularly with respect to I/O and recovery. This enhancement lets administrators and support staff quickly confirm a file's storage type using the standard VIEW FILEORG command, without needing to reference the file's original definition.


=== Compatibility Notes ===
== Compatibility Notes ==


• No new command syntax is introduced; existing VIEW/DISPLAY FILEORG commands and procedures continue to work unchanged.
• No new command syntax is introduced; existing VIEW/DISPLAY FILEORG commands and procedures continue to work unchanged.


• Scripts or automation that parse the FILEORG description text should be reviewed if they assume a fixed format, since the description may now include an additional ,In-Memory or ,Imagine qualifier for applicable files.
• Scripts or automation that parse the FILEORG description text should be reviewed if they assume a fixed format, since the description may now include an additional ,In-Memory or ,Imagine qualifier for applicable files.

Latest revision as of 17:51, 20 August 2026

VIEW/DISPLAY Command Now Identifies In-Memory and Imagine Files

This change was made in Model 204 Version 8.0.

What's New

The VIEW and DISPLAY commands now indicate when a file's organization (FILEORG) corresponds to an In-Memory file or an Imagine file. This information is shown directly alongside the existing file organization description, so you no longer need to check the original DEFINE command or other sources to determine whether a file is memory-resident.

For Example:

Before this change:

FILEORG X'0008' (Hashed) File organization

After this change:

- In-memory file:

FILEORG X'0008' (Hashed,In-Memory) File organization

- Imagine file:

 FILEORG X'0008' (Hashed,Imagine) File organization

Note: Files that are not in-memory or Imagine files continue to display exactly as before — no change in output for standard disk-resident files.

Benefit

In-memory and Imagine files behave differently from traditional disk-resident files, particularly with respect to I/O and recovery. This enhancement lets administrators and support staff quickly confirm a file's storage type using the standard VIEW FILEORG command, without needing to reference the file's original definition.

Compatibility Notes

• No new command syntax is introduced; existing VIEW/DISPLAY FILEORG commands and procedures continue to work unchanged.

• Scripts or automation that parse the FILEORG description text should be reviewed if they assume a fixed format, since the description may now include an additional ,In-Memory or ,Imagine qualifier for applicable files.