Hi,
why do you think that SQL server is an issue? Could you describe your problem in more details?
Best regards,
Victor
why do you think that SQL server is an issue? Could you describe your problem in more details?
Best regards,
Victor
We really need your input in this questionnaire
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
ExternalParameterShellExec = HTTPS.CertificateExpireDate(*):echo | openssl s_client -showcerts -servername netxms.org -connect netxms.org:443 2>/dev/null | openssl x509 -inform pem -noout -enddate | cut -d = -f 2
if ($1 match "^\\s*([A-Za-z]+)\\s+([0-9]+)\s+([0-9]+):([0-9]+):([0-9]+)\s+([0-9]+)")
{
t = new TIME();
t->year = $6;
t->mon = MonthFromName($1);
t->mday = $2;
t->hour = $3;
t->min = $4;
t->sec = $5;
t->isdst = -1;
return mktime(t);
}
else
{
return 0; // error
}
sub MonthFromName(name)
{
m = 0;
for(n : %("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"))
{
if (n == name)
return m;
m++;
}
return 0; // error
}
return mktime(t) - time();