Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Query on SSl Certificate

Sushma
New Contributor
New Contributor

Hi All,

Can you please let me know, how to extract list of certificates tagged to respective connections/query to merge certificate list table with externalconnection table?

1 REPLY 1

rushikeshvartak
All-Star
All-Star

SELECT E.CONNECTIONNAME,
       S.ALIAS,
       S.VALID_FROM,
       S.VALID_TO AS certificate_expiry
FROM   EXTERNALCONNECTION E,
       SAV_SSLCERT S
WHERE  S.CERT_KEY = E.SSLCERTIFICATE
       AND E.SSLCERTIFICATE IS NOT NULL 

rushikeshvartak_2-1706217346991.png

 

 

 


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.