WCC still displays previous version on dashboard
search cancel

WCC still displays previous version on dashboard

book

Article ID: 231161

calendar_today

Updated On:

Products

Autosys Workload Automation

Issue/Introduction

Upgraded WCC to 12.0.01 but the WCC widget still has the old version. This really isn't causing an issue how to fix this?  The correct version selected in the the configuration tab.

Environment

Release : 12.0

Component : WORKLOAD CONTROL CENTER

Resolution

The mon_server table in the wcc db is where that version information is pulled from.
Check its contents/value.

If it does not have the correct value we can  update the table.

Example:
select name||','||version from cfg_server;
select instance||','||name||','||version from mon_server;

Compare the versions values.
The cfg_server should be what you see in the configuration tab.
The mon_server one is what the dashboard displays.


Example of updating it:

update mon_server set version='11.3.6.7' where version='11.3.6.5';

commit;