Prerequisites for upgrading to 10.0.2406.0-amd64

Attention: If you are upgrading from an earlier version to a higher or the latest version, ensure that you complete the pre-upgrade steps for each intermediate release that are listed on the Pre-upgrade tasks page. If a version is not listed on the page, it means there are no pre-upgrade steps required for that release.

If you are upgrading the IBM Sterling Intelligent Promising to 10.0.2406.0-amd64, you must create a job column in inv_upgrade table.

Procedure

  1. Log in to Cassandra instance.
  2. Run the following command to select the keyspace.
    USE <iv_keyspace>;
    This is the name of the keyspace that is defined in SIPEnvironment. For more information, see keyspace in cassandra parameter.
  3. Run the following query to add a column.
    ALTER TABLE INV_UPGRADE ADD job text;
  4. Run the following query to verify if the job column is created.
    DESCRIBE TABLE INV_UPGRADE ;