Start of change

REMOVE_MIGRATION_INTERFACE procedure

The REMOVE_MIGRATION_INTERFACE procedure removes an interface from the list of modifications that will occur on the source or target nodes during the cutover stage of IBM i Migrate While Active.

Interfaces that have been defined can be displayed using MIGRATION_INTERFACE_INFO view.

Authorization: The caller must have *IOSYSCFG special authority. To understand any additional authority needed to use this procedure, see Db2® Mirror services authorization.

Read syntax diagramSkip visual syntax diagram REMOVE_MIGRATION_INTERFACE ( IP_ADDRESS =>  ip-address )

The schema is QSYS2.

ip-address
A character string that specifies the IP address to remove. It must be an address that was registered using the QSYS2.ADD_MIGRATION_INTERFACE procedure.

Example

  • Remove an interface so it will not be applied during the cutover stage.
    CALL QSYS2.REMOVE_MIGRATION_INTERFACE(IP_ADDRESS => '192.12.3.4');
End of change