This document describes how to change the definition (structure) of a schema record.
Release: All supported releases.
Assume there is a schema called MYSCHEMA version 1 which includes a record called MYRECORD version 1.
In order to change the definition of MYRECORD, perform the following steps:-
MOD SCHEMA NAME IS MYSCHEMA VERSION IS 1.
MOD RECORD NAME IS MYRECORD
SHARE STRUCTURE OF RECORD MYRECORD VERSION 2.
VALIDATE.
REG ALL SUBSCHEMAS.
MOD REC MYRECORD V 1 NEW V 3.
MOD REC MYRECORD V 2 NEW V 1.
MOD REC MYRECORD V 3 NEW V 2.
Note that this procedure does NOT alter the underlying data. It is only a means for changing the definition of the schema record within the data dictionary.