|
|
Migration Upgrade of ThingWorx Utilities is not supported from version 9.4.x and later.
|
|
|
Before exporting the data, it is recommended that you do the following:
• Purge all old and unwanted deployment records. This reduces the amount of data and the time taken to transfer the data to the new version.
• Ensure there are no active deployments before starting the upgrade to the new version. This reduces the possibility of time-outs or deployment failures during the upgrade.
|
|
|
While importing the ThingWorx Utilities Core extension for ThingWorx Utilities 9.0.0, you might see this warning:
Import requires platform restart. One or more warnings occurred.
You can continue with the upgrade.
|
|
|
It is recommended to perform the In-Place upgrade of ThingWorx Utilities from 9.2.x and later for PostgreSQL and from 9.4.x and later for MSSQL as the data in the ThingWorx Software Content Management database does not migrate after a migration upgrade.
|
|
|
The steps to add an index manually are applicable for ThingWorx Utilities 9.3.16 and 9.3.19.
|
CREATE INDEX scm_delivery_target_id_index ON scm_delivery_target (entry_id);
CREATE INDEX scm_delivery_target_status_index ON scm_delivery_target USING btree (status);

CREATE NONCLUSTERED INDEX [scm_delivery_target_id_index] ON [scm_delivery_target]
(
[entry_id] ASC
) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
CREATE NONCLUSTERED INDEX [scm_delivery_target_status_index] ON [scm_delivery_target]
(
[status] ASC
) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
