
Dipika_Saxena7 (Customer) asked a question.
How to know servers current and latest versions
Salesforce now requires MFA validation for all SSO users. Please read the advisory below for further information on required actions to avoid login failures.
Read the Advisory
Dipika_Saxena7 (Customer) asked a question.
I usually use this SQL query for knowing current versions av ACM installs:
(and this query can be run as a non-high-privileged user like AVDWUSER)
select * from avuser.t_system_settings where parameter like 'SchemaCreated%' or parameter='productVersion' or parameter like 'HotFix%' order by PARAMETER;
I think the patch scripts use that query themselves.
You can see the version in the UI as well.
also in aveksaServerInfo.log (/home/oracle/wildfly/domain/servers/img-server-1/log)
Okay, thanks for the response