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

CA Workload Automation AE

Issue/Introduction

We upgraded to 12.0.01 but the our WCC widget still has the old version. This really isn't causing an issue but I would like to know where it is pulling the older version. I have 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;