11.17 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

Table 11-17 REMOVE_WORKSPACE_EXCEPTIONS 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;