/
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
Warehouse Transfers
Warehouse Transfers
Read with this
How can I find out who is logged into Jiwa - version 7.01.00 and higher?
How can I find out who is logged into Jiwa - version 7.01.00 and higher?
More like this
Processing Back Orders on a Warehouse Transfer Out
Processing Back Orders on a Warehouse Transfer Out
Read with this
Upgrading from 07.00.175 to 07.02.00 may appear to 'hang' at upgrade script 34163
Upgrading from 07.00.175 to 07.02.00 may appear to 'hang' at upgrade script 34163
More like this
Who else is logged in to Jiwa 7.0.175 only?
Who else is logged in to Jiwa 7.0.175 only?
More like this
How can I see who the logged in User is?
How can I see who the logged in User is?
More like this