文档解释
ORA-24421: OCISessionRelease cannot be used to release this session.
Cause: The session was not retrieved using OCISessionGet, and an attempt has been made to release it using OCISessionRelease.
Action: Release the session using an appropriate call.
:
ORA-24421的错误意思是不能用OCISessionRelease来释放此session。
这个错误信息是由Oracle在数据库平台上提供的,它指出OCISessionRelease API 并不能用以释放特定的会话。
原因是OCISessionRelease API只能用于释放客户端应用程序创建的会话,不能用于支持数据库角色或通过SQL*Net建立的会话。
正常处理方案和步骤是:要先退出客户端应用程序,然后再运行OCISessionRelease API来释放会话资源。