Click HERE to see how Saviynt Intelligence is transforming the industry. |
07/09/2024 06:31 AM
Hello team,
Can someone help in providing the columns for sav_sslcert table?
Also can someone help in confirming that we see an issue on ui (certificate management) where the certificate does shows expired whereas the connection is working perfectly.
Solved! Go to Solution.
07/09/2024 07:50 AM
TABLE_NAME | COLUMN_NAME |
sav_sslcert | ALIAS |
sav_sslcert | CERT_KEY |
sav_sslcert | ISSUERNAME |
sav_sslcert | STATUS |
sav_sslcert | SUBJECTNAME |
sav_sslcert | UPDATE_DATE |
sav_sslcert | VALID_FROM |
sav_sslcert | VALID_TO |
07/09/2024 09:36 AM
Hello,
Is there a way to identify how certificate was uploaded?
Also, we see difference in number of results returned from query and from ui. Any specific reason?
07/09/2024 10:38 AM
Check for status active
07/09/2024 10:42 PM
We see some issue again.
On running the query we see inspite some certificate expiry date has passed the statuskey show 1.
And also which are active some show status 2.
There is also difference in the number of results returned and what displayed via query.
Is this a bug?
07/09/2024 10:44 PM
Share sample result
07/09/2024 10:47 PM
Its shows correct in my case.
07/10/2024 01:56 AM
As per your screenshot last entry is showing 2. It's still valid cert right?
Similarly 1 St entry is showing 1 for active.
07/10/2024 06:21 AM
Certificate is uploaded multiple times hence its valid
07/11/2024 06:24 PM
But doesn't it shows the discrepancy?
07/11/2024 07:09 PM
No
07/12/2024 02:41 AM
my point here is its gives a confusion if it has expired or not.
Also we dont undertsand or there is no clarity it has gone multiple uploads
07/12/2024 06:44 AM - edited 07/12/2024 07:13 AM
Every certificate have single active entry check latest update date
SELECT
ALIAS,
CERT_KEY,
ISSUERNAME,
STATUS S,
SUBJECTNAME,
UPDATE_DATE,
VALID_FROM,
VALID_TO
FROM
sav_sslcert where alias ='test_certificate'
07/15/2024 11:27 PM
For us it's an issue.
Logged a ticket.
07/30/2024 11:51 PM
Hello @Manu269 and @rushikeshvartak,
07/31/2024 09:29 AM - edited 07/31/2024 09:30 AM
SELECT
ALIAS,
CERT_KEY,
ISSUERNAME,
CASE
WHEN STATUS = 2 THEN 'Deleted'
WHEN CURRENT_DATE < VALID_FROM THEN 'Not Yet Valid'
WHEN CURRENT_DATE > VALID_TO THEN 'Expired'
WHEN CURRENT_DATE BETWEEN VALID_FROM AND VALID_TO THEN 'Active'
END AS CURRENT_STATUS,
SUBJECTNAME,
UPDATE_DATE,
VALID_FROM,
VALID_TO
FROM
sav_sslcert
WHERE
alias = 'test_certificate';
07/31/2024 10:16 PM
Hi @sudeshjaiswal @rushikeshvartak thanks for the details.
Let me also explore the ootb analytics provided by Saviynt.