Start of change

REMOVE_MIGRATION_HOST_TABLE_ENTRY procedure

The REMOVE_MIGRATION_HOST_TABLE_ENTRY procedure removes an IP address and all its associated host names from the list of modifications that will occur on the target node during the cutover stage of IBM i Migrate While Active.

Host table entries that have been defined can be displayed using MIGRATION_HOST_TABLE_ENTRY_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_HOST_TABLE_ENTRY ( IP_ADDRESS =>  ip-address )

The schema is QSYS2.

ip-address

A character string that specifies the IP address to remove. All host names associated with this IP address will be removed from the list.

Example

  • Remove all host table entries associated with an IP address so they will not be applied during the cutover stage.
    CALL QSYS2.REMOVE_MIGRATION_HOST_TABLE_ENTRY(
             IP_ADDRESS => '123.45.67.8');
End of change