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

ReleaseYes/No
8.3.x

Applicable RDBMS

RDBMSYes/No
Oracle Server
Microsoft SQL Server
CSS2
CSS3

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--
  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