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

How to extract Connection with expiry date at once

Shwet01
Regular Contributor
Regular Contributor

Hi All,

I am trying to extract all connection at with expiry date at once, can someone suggest how to extract. I through query what is table for it. 

Thanks

SS

2 REPLIES 2

dgandhi
All-Star
All-Star

What do you mean by expiry date in the connection? Can you elaborate?

Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.

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_0-1706217007473.png

 


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