Is there a way to 'kill' or terminate a user session?
Is there a way to 'kill' or terminate a user session?
Users may end a terminal server session or turn off their computer without logging out of Jiwa. This can leave the user logged in and consuming a Jiwa licence.
Step-by-step guide
SQL skills are required
A working knowledge of SQL Management Studio is required to complete this task
Run the following script to identify the session to be ended
SELECT sys.sysdatabases.name [database name], hostname, program_name, sysprocesses.spid
FROM sys.sysprocesses
JOIN sys.sysdatabases ON sys.sysdatabases.dbid = sys.sysprocesses.dbid
WHERE program_name like 'Jiwa Financials%'
ORDER BY [database name] desc
From the resulting list, identify the relevant session to end.
In this example session 66 is to be ended. Run the following
KILL 66
Related articles
, multiple selections available,
Related content
End-user License Agreement
End-user License Agreement
More like this
Jiwa REST API Service won't start
Jiwa REST API Service won't start
More like this
Warehouse Transfers
Warehouse Transfers
Read with this
Jiwa 7.02.01.00 Service Release 14
Jiwa 7.02.01.00 Service Release 14
More like this
Jiwa 7.02.01.00 Service Release 10
Jiwa 7.02.01.00 Service Release 10
More like this
Jiwa 7.02.01.00 Service Release 7
Jiwa 7.02.01.00 Service Release 7
More like this