Revert to an earlier version
To revert a DataBlade module
to an earlier version, run the SYSBldPrepare( ) function
with the DataBlade module
reference and the 'create'
arguments.
For the complete calling syntax and the signature of the SYSBldPrepare( ) function, see its description in the IBM® Informix® Guide to SQL: Syntax.
For
example, suppose you create a WorldView DataBlade module
that is dependent on a Map DataBlade module.
You have installed versions 4.13.FC3 and 4.13.FC4 of the Map DataBlade module
and versions 1.00 and 2.00 of the WorldView DataBlade module.
The following statements revert to version 1.00 of the WorldView DataBlade module
and version 4.13.FC3 of the Map DataBlade module:
EXECUTE FUNCTION sysbldprepare('worldview.1.00','create');
EXECUTE FUNCTION sysbldprepare('map.4.13.FC3','create');
In
these function calls, you cannot use an asterisk as the version string,
because 1.00 and 4.13.FC3 are not the latest installed versions of
their respective modules.