8.17 GET_KEEP_SESSIONS Function
This function finds out if sessions and session state will be preserved or deleted on upgrades.
Syntax
function GET_KEEP_SESSIONS
RETURN BOOLEAN
Example
The following example shows whether print sessions will be kept or deleted.
dbms_output.put_line (
case when apex_application_install.get_keep_sessions then 'sessions will be kept'
else 'sessions will be deleted'
end );
See Also:
Parent topic: APEX_APPLICATION_INSTALL