CAST Universal Analyzer Framework - Information - How to find which version of COE UA Config pack has been installed

Purpose

This page describes the methods to find out the version of COE UA Config pack, installed on CAST bases.

Applicable in CAST Version
Release
Yes/No
8.3.x(tick)
Applicable RDBMS
RDBMS
Yes/No
Oracle Server(tick)
Microsoft SQL Server(tick)
CSS2(tick)
CSS3(tick)
Details

By running query:

Run the below query on either Management, Knowledge or Central Database

select * from sys_package_version where lower(package_name) like '%<technology_in_lower_case>%'


Query Result Example

select * from sys_package_version where lower(package_name) like '%shell%'
 
Package_name ; version
"DIAGCORE_UA_COE_SHELL";"1.0.5.1030"
"ADG_METRIC_TREE_UA_COE_SHELL";"1.0.5.1030"
"/com.castsoftware.shell";"1.0.5"
 
In this example you can see that the package of Shell installed is 1.0.5

By verifying log:

  1. Open the ApplicationExtensions-<date>-<time> log or analysis log and
  2. Check the registering of the extension during the very first step of the analysis as seen in the log below,
  3. You can see all the extensions that are installed in the CAST bases, which will be used for analysis..


Notes/comments


Related Pages