Logo

SQL Script

Create Database Resource Manager Plan

Tested on Oracle 8.1

Updated : 30-July-2002
Version : 1.0

Description

This script creates a simple resource manager plan.

Parameters

None.

SQL Source

begin
 
  begin
     dbms_resource_manager.create_simple_plan
        (simple_plan => 'MY_PLAN'
        ,consumer_group1 => 'USERS', group1_cpu => 90
        ,consumer_group2 => 'ADMIN', group2_cpu => 10 );
     exception when others then
      null;
  end;

end;
/

Return to Index of SQL Scripts


Home | Company Profile | Services | Contact Us | SQL scripts and tips | Quiz
Legal

Logo