Force Termination of User Session - Best Practice?
UPDATE USESSION
SET DELETE_SESSION_ID = 0
WHERE (USER_ID =
(SELECT USER_ID AS EXPR1
FROM USERS
WHERE (UPPER(USER_NAME) = UPPER(:USERID))))
What are the potential negative impacts of this approach, if any?
Is there a utility or other method available that avoids these pitfalls?