32.27 REMOVE_WORKSPACE_EXCEPTIONS Procedure

This procedure removes all exceptions that allow the assignment of restricted schemas to given workspace.

Syntax

APEX_INSTANCE_ADMIN.REMOVE_WORKSPACE_EXCEPTIONS (
    p_workspace IN VARCHAR2 )

Parameter

Parameter Description
p_workspace The workspace.

Example

This example removes all exceptions that allow the assignment of restricted schemas to HR_WORKSPACE.

BEGIN
    apex_instance_admin.remove_schema_exceptions (
            p_workspace => 'HR_WORKSPACE' );
    COMMIT;
END;