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 | ✅ |
Applicable RDBMS
| RDBMS | Yes/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:
- Open the ApplicationExtensions-
- - Check the registering of the extension during the very first step of the analysis as seen in the log below,
- You can see all the extensions that are installed in the CAST bases, which will be used for analysis..

Notes/comments
Related Pages