How to manage Oracle 9i resource

i am actually trying oracle DB 9i at home with the following system.
Pentium 3 800, 256MB, Win2k Professional SP3.
Previously, my pc runs smoothly but after the installation of oracle 9i (Standard), it has taken off around 150MB of my memory. Windows Task Manager reported MEM Ussage 400MB. dat's like twice my physical memory. this slows my system so badly n i need to wait like 2 minutes to start up JDeveloper.
I need the oracle db to test my out some of the Oracle JDeveloper's BC4J application. basically, a basic DB engine.. like the down scale MS Server, MS Data Engine (MSDE) would do me good. Any solution to make oracle db consumes less resources?

You might want to take a look at personal oracle.
Good luck
Remi

Similar Messages

  • How Transaction Manager work with Resource Manager, like Connection pool?

    hi,
    I'm using BEA Webloigc8.1 Stateless Session Bean/DAO/Oracle stored proc.
    but I'm not quite clear how Transaction Manager work with Resource Manager, like Connection pool.
    my understanding is that, in a weblogic transaction, a stateless session bean interact with several DAOs, and for each method of DAO a connection is acquired from connection pool. I've heard that the connection will not return to pool until the transaction commits.
    My question is that, does it mean that for a weblogic transaction, multiple connections might be allocated to it? and if multiple connections are allocated, then how many oracle transactions would be started? or multiple connections share the same oracle transaction?
    I didn't feel it make sense to start multiple oracle transactions, cause deadlock might be incurred in a single weblogic transaction.
    any help appreciated!

    Xin Zhuang wrote:
    hi,
    I'm using BEA Webloigc8.1 Stateless Session Bean/DAO/Oracle stored proc.
    but I'm not quite clear how Transaction Manager work with Resource Manager, like Connection pool.
    my understanding is that, in a weblogic transaction, a stateless session bean interact with several DAOs, and for each method of DAO a connection is acquired from connection pool. I've heard that the connection will not return to pool until the transaction commits.
    My question is that, does it mean that for a weblogic transaction, multiple connections might be allocated to it? and if multiple connections are allocated, then how many oracle transactions would be started? or multiple connections share the same oracle transaction?
    I didn't feel it make sense to start multiple oracle transactions, cause deadlock might be incurred in a single weblogic transaction.
    any help appreciated!Hi. If you configure your WLS DataSource to use keep a connection for
    the duration of a tx, it will do that, and in any case there can be
    no deadlock however many connections operate for a given XA transaction.
    Here is the best coding form for DAOs or any other user-written code
    for using WebLogic DataSources. This is important for two reasons:
    1 - Thread-safety is maintained as long as the connection is a
    method-level object.
    2 - It is crucial to notify WebLogic that you are done with a connection
    ASAP, by your calling close() on it. We will then put it back in the
    pool, or keep it under the covers for your next request if it's in a
    transaction etc. The pool is optimized for quick get-use-close scenarios.
    public void one_of_my_main_JDBC_Methods()
    Connection con=null; // Must be a method level object for thread-safety
    // It will be closed by the end of the method.
    try {
    con = myDataSource.getConnection(); // Get the connection in the try
    // block, directly from the WebLogic
    // datasource
    // do all the JDBC within this try block. You can pass the
    // connection to subordinate methods, but not to anywhere
    // that thinks it can use the connection later.
    rs.close(); // close any result set asap
    stmt.close(); // then close any statement asap
    // When you're done with JDBC
    con.close(); // close the connection asap
    con = null; // nullify it so the finally knows it's done
    catch (Exception e) {
    // do whatever catch stuff you want. You don't
    // need a catch block if you don't want one...
    finally {
    // It is important to close a JDBC connection ASAP when it's not needed.
    // without fail, and regardless of exit path. Do everything in your
    // finally block in it's own try-catch-ignore so everything is done.
    try { if (con != null) con.close();} catch (Exception ignore){}
    return ret;
    }

  • How to manage oracle in linux

    Hi all experienced dba out there. I had been administering oracle on Windows. But now I am looking for a dba role where the OS environment is mostl likely to be LINUX. Any guys who have worked on linux environment, can you please tell me, is it really hard to manage oracle in linux as I mentioned I only have experience in windows. I have also heard there is GUI in linux which is similar to windows. Do you guys mostly use command or GUI of linux to manage your oracle at work. If command is mostly used, what are the most common commands to manage oracle. Thanks alot for your attention

    Manging Oracle on Linux is no more difficult than managing Oracle on Windows.
    Managing Linux is about the same difficulty as managing Windows. Both require a degree of understanding of the environment. Once you are comfortable with the environment and the terminology / language used, you should have no big problems.
    I think the biggest challenges in Linux are
    - a different set of editors than you have used
    - a lot more time in the command line and writing batch scripts
    - Microsoft has many of the nix command capabilities but with enough changes (cp -> copy) to be confusing (remember, nix came first <g>)
    - the idea of 'C:, D:' drives is totally gone ... in *nix there is no 'drive', it's all just 'files'
    There are several GUI utilities to help 'manage' Linux. These may not be very useful when working with Oracle environment as they tend to relate to a file-oriented (or fire server) computing environment, not a database environment. However, you might want to search the web for 'WebMin' as a possibility.
    I encourage you get a good basic reference. One I like, although dated, is Essential System Administration

  • How to Manage Oracle Applications - Info Available

    Check this site :
    http://www.oracle.com/appsnet/technology/managing/content.html
    Contains White Papers, Presentations, Technical Overviews, FAQs for managing and maintaining Oracle Applications.
    The Presentations are lucid and extremely useful.
    Best Wishes
    Vinod Subramanian

    Manging Oracle on Linux is no more difficult than managing Oracle on Windows.
    Managing Linux is about the same difficulty as managing Windows. Both require a degree of understanding of the environment. Once you are comfortable with the environment and the terminology / language used, you should have no big problems.
    I think the biggest challenges in Linux are
    - a different set of editors than you have used
    - a lot more time in the command line and writing batch scripts
    - Microsoft has many of the nix command capabilities but with enough changes (cp -> copy) to be confusing (remember, nix came first <g>)
    - the idea of 'C:, D:' drives is totally gone ... in *nix there is no 'drive', it's all just 'files'
    There are several GUI utilities to help 'manage' Linux. These may not be very useful when working with Oracle environment as they tend to relate to a file-oriented (or fire server) computing environment, not a database environment. However, you might want to search the web for 'WebMin' as a possibility.
    I encourage you get a good basic reference. One I like, although dated, is Essential System Administration

  • How to manage oracle 8i db

    I have the next question:
    I am testing different databases.
    At the first time I install an oracle 8 standard database, then I becomes a lot of database management tools as Oracle enterprice manager.
    Now I have install the oracle 8i enterprice database wich I have received on the Oracle IDevelop 2000 seminar.
    And I cannot find the same tools as the oracle enterprice manger.
    Could anyone tell me we I can find these tools or on which cd are these tools.
    thanks a lot
    Andre

    Hi,
    You can also configure your As Java DB into DBACOKPIT of your As ABAP system as a remote database. From there you can do the administration.
    Thanks
    Sunny

  • How to manage oracle 9i databases from 11g ?

    Is there any option similar to 9i OEM's "Add Database to tree" in 11g ?
    currently I monitor 30 databases, all running 9iR2, using enterprise manager console. I had removed Oracle 9i from my system to install 11g, so is there anyway to monitor 9i database from 11g or do I have to re-install 9i into a new home ?
    My system is Windows XP and most databases are on linux.

    What, precisely, do you mean by "11g Enterprise manager console"? Are you talking about a web-based interface? Or a Java-based console application?
    If you have not done a separate OEM install, you're most likely using the database control, as web-based interface that allows you to manage a single database. You would need to install the Grid Control in order to manage multiple databases through the same interface.
    You're probably right, that's why I asked the question. Perhaps the original poster meant the "10g Enterprise Manager console". Perhaps he meant the "11g Enterprise Manager Database Control". Perhaps he meant the "11g Enterprise Manager Grid Control". Or perhaps he meant something different (i.e. SQL Developer is a console application that ships with 11g and has a variety of reporting scripts).
    The OP for the 11g installation could not have possibly made a separate OEM install, OEM is not included in 11g any more and he has not mentioned trying such intall. The OP was clear enough, so IMO there is no confusion, 30 9i databases, 1 11g database. There was not a 10g in between. I would not go so far as to say an 11g grid control, since there is no such grid control, the latest version for grid control is 10.2.0.4.0 for R2 and 10.1.0.3.0 for R1. And SQLDeveloper, yes, it is a java application included with 11g, and you can launch scripts from there, but in no way it is a managing environment the way the OP pretends.
    Regards.
    ~ Madrid
    http://hrivera99.blogspot.com

  • Does Oracle Database Resource Manager work at all?

    I have been testing Oracle Database Resource Management...
    Environment: OS IBM AIX 5L 64 bit core, DB Oracle8i 8.1.7.4 Enterprise Edition.
    To test, I followed the procedure in the Oracle Metalink Bulletin Note:106948., Oracle8i: Database Resource Manager samples.
    But I was not able to reproduce any succes. There seems to be no difference running with at plan and not running with af plan enabled.
    Does anydody know of a problem with the combination of Oracle and AIX, or any other problems that could explain why it doesn't work?
    /Jørn Hansen

    if the cpu is 100% loaded then you can see any affects..
    this is the way how oracle database resource manager works..
    Message was edited by:
    mkocaer

  • How to Manage the Resource Master in Primavera Enterprise Version

    We are using P6 enterprise version in our company having a central database. We had created our own unique resources and standardised across the enterprise and is Admin protected. However we often have to import some schedules sent by our consultant/client. In those schedules they have their own resources.
    So when we import these schedules, it also imports the resources along with it and pollutes our resource master.
    Can anyone let me know, how to manage such a situation.
    Regards

    We have met this issue. You have few ways to deal with it, but each has its own +ve and -ve.
    1- You may create a separate "Working" db into which you can import those files and keep them there only. Your master db shall be used for maters and your own program only.
    2- You may do the same for checking the resourses, vet them before importing into the final db
    3- P3 and MSP importation allows you to select the node to which the resources will be located. We have created a resource node called "Imported Resources" and dumped all those resources into it. Our users don't have access to that node so those resources can only be used on the imported program and can't be assigned to any other program / activity
    4- Enforce your supply chain to use the same resource list. We managed to do that for our main and subcontractors. That formed part of their contracts.

  • How to configure Oracle Enterprise Manager for ASM RAC Database ?

    Dears,,
    We have two databases (Primary & Standby), each database has two instances
    Database version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit
    How to configure Oracle Enterprise Manager for this environment ?
    I need documentation for this please.
    Many thanks & Regards,,

    Assuming an agent is running on the servers you want to monitor,
    navigate to the Agent home page (Via setup --> Agent)
    When in the agent home page select 'Add Database'and press [Go]
    Assuming yopur database now gets recognized, select the Configure icon and enter the password for dbsnmp.
    When done, press [Ok] to return to the agent home page.
    Regards
    Rob
    http://oemgc.wordpress.com

  • How to configure Oracle Enterprise manager 11.2.0.1 for ASM instance

    Hi All,
    Please let us know How to configure Oracle Enterprise manager 11.2.0.1 for ASM instance.
    Reagrds,
    Vikas

    Assuming an agent is running on the servers you want to monitor,
    navigate to the Agent home page (Via setup --> Agent)
    When in the agent home page select 'Add Database'and press [Go]
    Assuming yopur database now gets recognized, select the Configure icon and enter the password for dbsnmp.
    When done, press [Ok] to return to the agent home page.
    Regards
    Rob
    http://oemgc.wordpress.com

  • DATABASE RESOURCE MANAGER ( ORACLE 8I NEW FEATURE )

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-16
    DATABASE RESOURCE MANAGER ( ORACLE 8I NEW FEATURE )
    ===================================================
    SCOPE
    8i~10g Standard Edition 에서는 Database Resource Manager 를 지원하지 않는다.
    Explanation
    Database Resource Manager란 OS에서 제공하는 자원 (예 : CPU 자원 )에 대해 DB
    차원에서 계획을 세워, 세부 관리를 할 수 있도록 해 주는 서비스이다.
    예를 들어 주간에 batch 작업을 처리하더라도, OLTP 업무에는 지장을 주지 않아야
    할 경우 batch 작업에 CPU 자원을 적게 할당해 주는 것이 바람직 하며, Resource
    Manager를 활용하여 CPU 자원을 batch 작업과 OLTP 업무에 서로 다르게 할당해 줄
    수 있다. ( Oracle 8.1.6 까지는 Resouurce Manager에서 CPU 자원에 대해서만
    관리만 가능하다 )
    1. 용어
    1) Resource Consumer Group
    사용자 session들의 집합. Resource에 대한 요구사항에 따라 나뉘어진 그룹.
    2) Resource Plan
         Consumer Group에 자원을 할당 해 주기 위한 resource plan directive들을
    포함.
    3) Resource Allocation Method
         Resource Manager에서 자원을 할당해 주는 방법/정책.
    4) Resource Plan Directive
         Resource Plan에 대해 자원을 할당해 주는 세부 내역.
    2. Resource Consumer Group
    * 기본 group
         [ 사용자가 삭제, 수정할 수 없는 group ]
         OTHER_GROUPS : active plan schema에 속하지 않는 consumer group의 모든
    session
         DEFAULT_CONSUMER_GROUP : consumer group을 지정하지 않은 모든
    session.(default)
         [ 기본적으로 제공되나 사용자가 삭제하거나 변경할 수 있는 group ]
         SYS_GROUP : SYSTEM_PLAN에 대한 high priority consumer group
    SYSTEM, SYS user에 할당한다.
         LOW_GROUP : SYSTEM_PLAN에 대한 low priority consumer group
    3. Resource Plan
         Consumer group에 속하는 session들은 해당 group에 대한 resource plan에
    따라 자원 할당이 결정되며, 자원 할당에 대한 세부 사항은 resource plan에
    대한 resource plan directive에서 지정된다.
         Resource plan은 subplan을 둘 수 있다.
    4. Resource Allocation Method
         Round-robin Method : Consumer group 내에서 session들에 대한 CPU 할당
         Emphasis Method : Consumer group에 할당되는 CPU
         Absolute Method : Parallel degree 한계 ( 예 : Parallel Query에서의
    degree )
    5. Resource Plan Directive
         Resource Plan Directive에 지정된 내용들은 resource plan에 따라
    consumer group에 자원을 할당할 때 반영된다.
    6. 구현 예제
         MYDB PLAN +-> MAILDB PLAN +-> POSTMAN GROUP (40% Level 1)
         | (30% Level 1) |
         | +-> USERS GROUP (80% Level 2)
         | |
         | +-> MAILMAINT GROUP (20% Level 2)
         | |
         | +-> OTHER GROUP (100% Level 3)
         |
         +-> BUGDB PLAN  +-> ONLINE GROUP (80% Level 1)
         (70% Level 1) |
         +-> BATCH GROUP (20% Level 1)
         |
         +-> BUGMAINT GROUP (100% Level 2)
         |
         +-> OTHER GROUP (100% Level 3)
         위 예에서 MYDB PLAN에는 2개의 subplan ( MAILDB PLAN, BUGDB PLAN )이
         있으며 각각 30%와 70%의 CPU 자원을 할당하였다.
         Level 1, Level 2, Level 3 는 우선순위 레벨을 의미하며, 하나의
         resource plan에서 동일한 level의 합이 100%를 넘지 못한다.
         ( Level 은 1부터 8까지 지정할 수 있으며 level 1이 가장 우선순위가
         높으며 level 8이 가장 우선순위가 낮다 )
         예를 들어 전체 CPU 자원의 70%를 할당 받은 BUGDB PLAN은 다시
         ONLINE GROUP과 BATCH GROUP을 두고 있는데, 이 둘의 Level이 모두 1이며
         두개의 percentage의 합이 100%이다. 하지만, 즉, level 1인 ONLINE GROUP
    에 90%를 할당하였다면, level 1인 BATCH GROUP에는 10% 이상을 할당할 수
    없다.
    Example
         * 구현을 위한 코드
         BEGIN
         /* PLAN schema 작업 영역 생성 */
         DBMS_RESOURCE_MANAGER.CREATE_PENDING_AREA();
         /* BUGDB PLAN, MAILDB PLAN, MYDB PLAN 생성 */
         DBMS_RESOURCE_MANAGER.CREATE_PLAN(PLAN => 'bugdb_plan',
         COMMENT => 'Resource plan/method for bug users sessions');
         DBMS_RESOURCE_MANAGER.CREATE_PLAN(PLAN => 'maildb_plan',
         COMMENT => 'Resource plan/method for mail users sessions');
         DBMS_RESOURCE_MANAGER.CREATE_PLAN(PLAN => 'mydb_plan',
         COMMENT => 'Resource plan/method for bug and mail users sessions');
         /* CONSUMER GROUP 생성 */
         DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP(CONSUMER_GROUP =>
    'Bug_Online_group', COMMENT => 'Resource consumer group/method for
    online bug users sessions');
         DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP(CONSUMER_GROUP =>
    'Bug_Batch_group', COMMENT => 'Resource consumer group/method for
    bug users sessions who run batch jobs');
         DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP(CONSUMER_GROUP =>
    'Bug_Maintenance_group', COMMENT => 'Resource consumer group/method
    for users sessions who maintain the bug db');
         DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP(CONSUMER_GROUP =>
    'Mail_users_group', COMMENT => 'Resource consumer group/method for
    mail users sessions');
         DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP(CONSUMER_GROUP =>
    'Mail_Postman_group', COMMENT => 'Resource consumer group/method for
    mail postman');
         DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP(CONSUMER_GROUP =>
    'Mail_Maintenance_group', COMMENT => 'Resource consumer group/method
    for users sessions who maintain the mail db');
         /* BUGDB PLAN에 대한 DIRECTIVE 생성 */     
         DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(PLAN => 'bugdb_plan',
    GROUP_OR_SUBPLAN => 'Bug_Online_group',     COMMENT => 'online bug users
    sessions at level 1', CPU_P1 => 80, CPU_P2=> 0,
         PARALLEL_DEGREE_LIMIT_P1 => 8);
         DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(PLAN => 'bugdb_plan',
    GROUP_OR_SUBPLAN => 'Bug_Batch_group',      COMMENT => 'batch bug users
    sessions at level 1', CPU_P1 => 20, CPU_P2 => 0,
         PARALLEL_DEGREE_LIMIT_P1 => 2);
         DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(PLAN => 'bugdb_plan',
    GROUP_OR_SUBPLAN => 'Bug_Maintenance_group',COMMENT => 'bug
    maintenance users sessions at level 2', CPU_P1 => 0, CPU_P2 => 100,
         PARALLEL_DEGREE_LIMIT_P1 => 3);
         DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(PLAN => 'bugdb_plan',
    GROUP_OR_SUBPLAN => 'OTHER_GROUPS', COMMENT => 'all other users
    sessions at level 3', CPU_P1 => 0, CPU_P2 => 0, CPU_P3 =>
         100);
    (참고) CPU_P1 : cpu allocation for level 1
         /* MAILDB PLAN에 대한 DIRECTIVE 생성 */
         DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(PLAN => 'maildb_plan',
    GROUP_OR_SUBPLAN => 'Mail_Postman_group',COMMENT => 'mail postman at
    level 1', CPU_P1 => 40, CPU_P2 => 0, PARALLEL_DEGREE_LIMIT_P1 => 4);
         DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(PLAN => 'maildb_plan',
    GROUP_OR_SUBPLAN => 'Mail_users_group',     COMMENT => 'mail users
    sessions at level 2', CPU_P1 => 0, CPU_P2 => 80,
         PARALLEL_DEGREE_LIMIT_P1 => 4);
         DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(PLAN => 'maildb_plan',
    GROUP_OR_SUBPLAN => 'Mail_Maintenance_group',COMMENT => 'mail
    maintenance users sessions at level 2', CPU_P1 => 0, CPU_P2 => 20,
         PARALLEL_DEGREE_LIMIT_P1 => 2);
         DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(PLAN => 'maildb_plan',
    GROUP_OR_SUBPLAN => 'OTHER_GROUPS', COMMENT => 'all other users
    sessions at level 3', CPU_P1 => 0, CPU_P2 => 0, CPU_P3 =>
         100);
         /* MYDB PLAN에 대한 DIRECTIVE 생성 */
         DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(PLAN => 'mydb_plan',
    GROUP_OR_SUBPLAN => 'maildb_plan', COMMENT=> 'all mail users
    sessions at level 1', CPU_P1 => 30);
         DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(PLAN => 'mydb_plan',
    GROUP_OR_SUBPLAN => 'bugdb_plan', COMMENT => 'all bug users sessions
    at level 1', CPU_P1 => 70);
         /* PLAN schema 작업 내용을 저장 */
         DBMS_RESOURCE_MANAGER.VALIDATE_PENDING_AREA();
         DBMS_RESOURCE_MANAGER.SUBMIT_PENDING_AREA();
         end;
    7. CONSUMER GROUP에 사용자나 세션을 할당하는 방법
         먼저 인스턴스에서 사용할 TOP Level resource plan 을 지정한다.
    initSID.ora에 RESOURCE_MANAGER_PLAN = MRDB_PLAN 지정이나 아래와 같이
    session level에 ALTER SYSTEM command를 사용하여 지정한다.
         ALTER SYSTEM SET RESOURCE_MANAGER_PLAN = MYDB_PLAN;
         그리고 SCOTT 계정에 BUG_ONLINE_GROUP과 BUB_BATCH_GROUP 에 속할 수 있는
    권한을 부여     
    DBMS_RESOURCE_MANAGER_PRIVS.GRANT_SWITCH_CONSUMER_GROUP ('SCOTT',
    'BUG_ONLINE_GROUP', TRUE);
         DBMS_RESOURCE_MANAGER_PRIVS.GRANT_SWITCH_CONSUMER_GROUP ('SCOTT',
    'BUG_BATCH_GROUP', TRUE);
         * DBMS_RESOURCE_MANAGER.SET_INITIAL_CONSUMER_GROUP( user in
    varchar2, consumer_group in varchar2);
         예)
         DBMS_RESOURCE_MANAGER.SET_INITIAL_CONSUMER_GROUP('SCOTT',
    'BUG_ONLINE_GROUP');
         SCOTT 계정을 BUG_BATCH_GROUP에 할당
         * DBMS_RESOURCE_MANAGER.SWITCH_CONSUMER_GROUP_FOR_SESS (
                             session_id IN NUMBER,
                             session_serial IN NUMBER,
                             consumer_group IN VARCHAR2);
         예)
         DBMS_RESOURCE_MANAGER.SWITCH_CONSUMER_GROUP_FOR_SESS( 11, 2,
    'BUG_ONLINE_GROUP');
         * DBMS_RESOURCE_MANAGER.SWITCH_CONSUMER_GROUP_FOR_USER (
                             user IN VARCHAR2,
                             consumer_group IN VARCHAR2);
         예)
         DBMS_RESOURCE_MANAGER.SWITCH_CONSUMER_GROUP_FOR_USER('SCOTT',
    'BUG_BATCH_GROUP');
    8. 관련된 Dictionary
    DBA_RSRC_PLANS : Resource plan과 status
    DBA_RSRC_PLAN_DIRECTIVES : Resource plan directives와 status
    DBA_RSRC_CONSUMER_GROUPS : Consumer group과 status
    DBA_RSRC_CONSUMER_GROUP_PRIVS : 사용자에게 부여된 Consumer group
    DBA_USERS : INITIAL_RSRC_CONSUMER_GROUP라는 새로운 column이 추가
    V$SESSION : RESOURCE_CONSUMER_GROUP라는 새로운 column이 추가
    V$RSRC_PLAN : 새로운 view로 active resource plan을 보여준다
    V$RSRC_CONSUMER_GROUP : 새로운 view로 consumer group의 active session
    을 보여준다.
    Reference Ducumment
    ---------------------

    user1 is the schema present in DB1
    user2 is the schema present in DB2. I just have a DB link
    as below:
    create database link link_to_DB2 connect to user2 identified by user2 using 'DB2';---Connects from user1 of DB1 to user2 of DB2.
    Requirement is as below:
    CPU for DB2 - 25%
    Out of above 25%, CPU for user2 - 70%
    CPU for user1 30% -- whenever it conncts using the link)
    Please help me out.

  • How to Manage Oraarch folder in Oracle

    Hello all,
    my client has
    my sap erp 2004 running on HP-UX and oracle 9i
    SAP is already live.
    they take regular backups on Hp 8 tape autoloaders.
    now while taking backups in the saparch the files get deleted regulary as the frequency has been set in initsp1.sap file.
    but in oraarch the files gets accumulated.
    i need to know what excatly get saved in oraarch folder and how to manage it's size....
    thanks
    saurabh

    When you run the Redo log archive, which parameters do you use?  Copy, Save, Delete?

  • How can apply Oracle BPEL patch to Oracle BPEL Process manager??

    Hi, Gurus:
    I am new to Oracle BPEL Process manager, I successfully install Oracle BPEL Process manager, but I need to install Oracle BPEL patch and the examples within it.
    so I download bpelpatches.zip, it has over 106 MB.
    It contains:
    1. p4369818_101200_GENERIC.zip
    2. p4343748_101200_GENERIC.zip
    3. p4406640_101200_GENERIC_Patch01.zip
    4. p4469111_101200_GENERIC_Patch02.zip
    I am using window XP, how Can I apply these patches to my system??
    How can apply Oracle BPEL patch to Oracle BPEL Process manager??
    Thanks a lot!!
    Charlie

    don't see any invoke in your client against the intiate operation.. - which creates the correlation
    only 2 of them
    <invoke name="Invoke_1" partnerLink="PartnerLink_1" portType="ns1:CorrelatedBPELProcess" operation="receive1" inputVariable="Invoke_1_receive1_InputVariable"/>
    <invoke name="Invoke_2" partnerLink="PartnerLink_1" portType="ns1:CorrelatedBPELProcess" operation="receive2" inputVariable="Invoke_2_receive2_InputVariable"/>
    compared to this def of the process
    <portType name="CorrelatedBPELProcess">
    <operation name="initiate">
    <input message="client:CorrelatedBPELProcessRequestMessage"/>
    </operation>
    <operation name="receive1">
    <input message="client:CorrelatedBPELProcessRequestMessage"/>
    </operation>
    <operation name="receive2">
    <input message="client:CorrelatedBPELProcessRequestMessage"/>
    </operation>
    </portType>

  • How to start oracle policy manager

    Hello all,
    I don't know how start the oracle policy manager on Linux Plataform, I have installed Oracle 9.2.0.4 on RHEL3, thanks for your help

    Hi
    OPM, oracle policy manager, is installed with the old enterprise manager.
    OPM is to manage VPD, virtuell private database and label security.
    Label Security is an extra Option.
    Regards
    Roman

  • How to open oracle vm manager???????

    How to open oracle vm manager in oracle vm server ??????
    need GUI to creat guest O/S??????
    Help....
    Thank you

    ps aux | grep oc4j
    root 569 0.0 0.0 4156 676 pts/1 S+ 11:51 0:00 grep oc4j
    root 3653 0.0 0.1 4772 1196 ? S 10:22 0:00 /bin/sh /opt/oc4j/bin/oc4j -start
    root 3655 6.3 14.9 769036 154512 ? Sl 10:22 5:36 /opt/oc4j/java/jdk1.5.0_11/bin/java -XX:PermSize=256m -XX:MaxPermSize=512m -jar /opt/oc4j/j2ee/home/oc4j.jar -config /opt/oc4j/j2ee/home/config/server.xml -userThreads
    root 5121 0.1 2.3 79668 23880 ? S 10:33 0:04 gedit file:///var/log/ovm-manager/oc4j.log

Maybe you are looking for

  • Error importing a table from DB2 in OBI 10g

    Hello, I am trying to import a table from DB2, but I have the following issue: *[nQSError: 16001] ODBC error state: S1000 code: 29986 message: [IBM][Controlador ODBC de iSeries Access][DB2 UDB]SQL0901 - Error del sistema SQL..* Steps I have done are:

  • I've tried calling my skype number

    Hi I wanted to see if my skype number worked. I tried calling it from my land line from my house in France. I got an auto message saying the number is invalid. I tried with and without the national code. Please let me know how my friends and family c

  • Reading data from XML

    Hello! I want my program to read data from external XML file. I know that Flash has an XML class, but I just don't get the way it reads and writes data from/to it. I have a following XML file (a part of it): <?xml version="1.0"?> <configuration> <sou

  • IBook and Power Mac G3

    Not sure where to post this topic- I am interested in creating and editting video with my iBook (G4, 768MB RAM, 30GB Hard Drive, 12inch). I have been offered a Power Mac G3 running OS 9.2. OK- could I use that Power Mac as an alternate Hard Drive (to

  • About Using CS SDK with adobe Digital Publishing Suite

    Hello, I'm relativly new to the Creative Suite SDK. I'm developping extensions in flashbuilder mainly for indesign 5.5 I'd like to know if there is a way to access the overlay creator (and in the same way, the folio builder) via some coding with the