// AOS Server name from Job
static void getServerNameForCurrentSession(Args _args)
{
sysClientSessions cliSessions;
sysServerSessions svrSessions;
;
select svrSessions
exists join cliSessions
where cliSessions.SessionId == sessionID()
&& cliSessions.ServerID == svrSessions.ServerId;
info(substr(svrSessions.AOSId, 1, strfind(svrSessions.AOSId, '@', 1, strlen(svrSessions.AOSId))-1));
}
static void getServerNameForCurrentSession(Args _args)
{
sysClientSessions cliSessions;
sysServerSessions svrSessions;
;
select svrSessions
exists join cliSessions
where cliSessions.SessionId == sessionID()
&& cliSessions.ServerID == svrSessions.ServerId;
info(substr(svrSessions.AOSId, 1, strfind(svrSessions.AOSId, '@', 1, strlen(svrSessions.AOSId))-1));
}
No comments:
Post a Comment