Description:
When upgrading from RA 9.0.161 to NFA 9.1.3 you must run the Console Tool(consoletool-exe.jar) on the NFA console before starting to upgrade any servers.
This tool is included with the NFA console software download.
This will copy the necessary data from the RA Console to the RA Harvester's database to prep for the upgrade.
This will also check the database_servers_scheduler table on the RA Console for any "unfinished" tasks.
There was an issue in RA 9.0.161 where if the Merge button was clicked too many times it may cause all future merges to occur. If there are merge/delete tasks in the database_servers_schedule table from the above mentioned issue it will cause the error below in the Console tool log file:
[ALWAYS ] - There are unscheduled tasks in the system which could cause migrations to fail. Please contact CA Support for further assistance.
Solution:
The solution to this is to delete the rows from the database_servers_scheduler table that have not completed yet.
mysql -P3308 reporter
SELECT * FROM database_servers_scheduler WHERE command IN ('MERGE INTERFACE', 'DELETE INTERFACE') AND started = 0;
DELETE FROM database_servers_scheduler WHERE command IN ('MERGE INTERFACE', 'DELETE INTERFACE') AND started = 0;
<Please see attached file for image>
select * from agents_all_view where id in(x, y);
<Please see attached file for image>