Resource Consumer Group Change

Hi,
in 10g R2;
scott is in LOW_GROUP :
EXEC DBMS_RESOURCE_MANAGER.CREATE_PENDING_AREA;
  EXEC DBMS_RESOURCE_MANAGER.SWITCH_CONSUMER_GROUP_FOR_USER ('SCOTT', 'LOW_GROUP');
  EXEC DBMS_RESOURCE_MANAGER.SUBMIT_PENDING_AREA;
  EXEC DBMS_RESOURCE_MANAGER.CLEAR_PENDING_AREA;
  SELECT USERNAME,RESOURCE_CONSUMER_GROUP FROM V$SESSION where username='SCOTT';
USERNAME                       RESOURCE_CONSUMER_GROUP
SCOTT                          LOW_GROUPnow scott run the following long query from his sqlplus session :
select * from sh.sales;And now :
  SELECT USERNAME,RESOURCE_CONSUMER_GROUP FROM V$SESSION where username='SCOTT';
USERNAME                       RESOURCE_CONSUMER_GROUP
SCOTT                          OTHER_GROUPSAny explanation ?
Thank you.

Hi,
The Resource Manager can automatically switch a session to another consumer group when a certain condition is met.
Automatic switching can occur when:
A session attribute changes, causing a new mapping rule to take effect.
A session exceeds the CPU or I/O resource consumption limits set by its consumer group.
So i suppose in this case second condition might have fulfilled so you are seeing the change.
Regards
Anurag

Similar Messages

  • Switching Consumer Groups

    Dear All,
    I had already posted my query as below but had not got appropriate answer so i am asking this question again which is as follows :
    how can i give preference to a prticular SID ?
    e.g :
    SID = 76
    There are other many Session running simultaneoulsy. I want to allow SID = 76 to execute SQL first inspite of the other session running previous to SID 76.
    The reply that i got was
    <<
    You can do this two ways that I know.
    Firstly use resource consumer groups and switch your active process into a higher prio group.
    Secondly if you use Unix? Renice the process to a higher priority.
    >>
    I tried 1st option to switch the group from Oracle Enterprise Manager but it was giving me error.
    I still not clear whether you give switch group authority when you create the user or you can there is some other way.
    I also saw help in OEM but the concept is still not clear.
    Ultimately while executing the session that i select has to get the highest priorirty. If anyone can explain with an example it would be great.
    Thanking you in anticipation.
    Best regards,
    Devendra

    If you are using resource manager to do this in 10g R2 it is failing miserably as oracle agreed that its a problem. 11g it is working perfectly.

  • How to export resource manager consumer groups using Data Pump?

    Hi, there,
    Is there any way to export RM Consumer Groups/Mappings/Plans as part of a Data Pump export/import? I was wondering because I don't fancy doing it manually and I don't see the object in the database_export_objects view. I can create them manually, but was wondering whether there's an easier, less involved way of doing it?
    Mark

    Hi,
    I have not tested it but i think a full db export/import (using data pump or traditional exp/imp) may help doing this (which might not be feasible for you to have full exp/imp) because full database mode exports/imports SYS schema objects also, so there is a chance that it will also import the resource group and resource plans.
    Salman

  • Consumer Group/Resource Plan to use only one instance of a RAC

    What would be the way to create a Consumer Group/Resource Plan to use only one instance of a RAC? I have 10.1.0.5 database
    running on 10.1.0.5 RAC.
    Thanks,

    You should use "services" to limit workload to just one specific node of RAC:
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10739/create.htm#sthref400

  • Resource Manager Consumer Groups

    I have implemented Database Resource Manager by creating new plan and new consumer groups. We are running oracle 9i. At database level it is active.
    We are running 11.5.9 oracle applications. At the profile option "FND:Consumer Groups" of apps, in lov only two values are appearing but not those which I have created at the database level.
    How to reflect these new consumer groups in 11i apps ?

    Hi,
    I have not tested it but i think a full db export/import (using data pump or traditional exp/imp) may help doing this (which might not be feasible for you to have full exp/imp) because full database mode exports/imports SYS schema objects also, so there is a chance that it will also import the resource group and resource plans.
    Salman

  • Change consumer group

    Hi,
    in 10g R2 on Win 2003 server
    I try to change the consumer group of user SCOTT :
    SQL> SELECT NAME from V$RSRC_CONSUMER_GROUP;
    NAME
    SYS_GROUP
    OTHER_GROUPS
    LOW_GROUP
    SQL> SELECT USERNAME,RESOURCE_CONSUMER_GROUP FROM V$SESSION where username='SCOTT';
    USERNAME                       RESOURCE_CONSUMER_GROUP
    SCOTT                          OTHER_GROUPS
    SQL> EXEC DBMS_RESOURCE_MANAGER.SWITCH_CONSUMER_GROUP_FOR_USER ('scott', 'LOW_GROUP');
    PL/SQL procedure successfully completed.But does not work :
    SQL> SELECT USERNAME,RESOURCE_CONSUMER_GROUP FROM V$SESSION where username='SCOTT';
    USERNAME                       RESOURCE_CONSUMER_GROUP
    SCOTT                          OTHER_GROUPSWhat is wrong in my action ?
    Many thanks.

    Thank SKU,
    SQL> SELECT * FROM DBA_RSRC_CONSUMER_GROUP_PRIVS;
    GRANTEE                        GRANTED_GROUP                  GRA INI
    PUBLIC                         DEFAULT_CONSUMER_GROUP         YES YES
    SYSTEM                         SYS_GROUP                      NO  YES
    PUBLIC                         LOW_GROUP                      NO  NONo he is not.
    What to do first then ?
    Finally we should do like this :
    SQL> SELECT USERNAME,RESOURCE_CONSUMER_GROUP FROM V$SESSION where username='SCOTT';
    USERNAME                       RESOURCE_CONSUMER_GROUP
    SCOTT                          OTHER_GROUPS
    SQL> EXEC DBMS_RESOURCE_MANAGER.CREATE_PENDING_AREA;
    PL/SQL procedure successfully completed.
    SQL> EXEC DBMS_RESOURCE_MANAGER.SWITCH_CONSUMER_GROUP_FOR_USER ('SCOTT', 'LOW_GROUP');
    PL/SQL procedure successfully completed.
    SQL> EXEC DBMS_RESOURCE_MANAGER.SUBMIT_PENDING_AREA;
    PL/SQL procedure successfully completed.
    SQL> EXEC DBMS_RESOURCE_MANAGER.CLEAR_PENDING_AREA;
    PL/SQL procedure successfully completed.
    SQL> SELECT USERNAME,RESOURCE_CONSUMER_GROUP FROM V$SESSION where username='SCOTT';
    USERNAME                       RESOURCE_CONSUMER_GROUP
    SCOTT                          LOW_GROUP

  • Add consumer group to System Plan

    I am trying to write a SQL statement that will do the following:
    2. Add the APPUSER consumer group to the SYSTEM_PLAN resource plan. Change the level 3 CPU resource allocation percentages: 60% for the APPUSER consumer group and 40% for the LOW_GROUP consumer group.
    SQL>BEGIN
    DBMS_RESOURCE_MANAGER.CREATE_SYSTEM_PLAN (SYSTEM_PLAN => ‘system_plan’,
    CONSUMER_GROUP1 => ‘APPUSER’, GROUP1_CPU3 => 60,
    CONSUMER_GROUP2 => ‘LOW_GROUP’, GROUP2_CPU3 => 40);
    END;
    When executing the statement, I get the following error message:
    Error message:
    ERROR at line 2:
    ORA-06550: line 2, column 23:
    PLS-00302: component 'CREATE_SYSTEM_PLAN' must be declared
    ORA-06550: line 2, column 1:
    PL/SQL: Statement ignored
    Can someone tell me what I am doing wrong?
    I appreciate the help.

    Yes, you are correct. I misunderstood what I was reading. I thought in the example they were naming the plan. I will revise and see what happen.
    SQL>BEGIN
    DBMS_RESOURCE_MANAGER.CREATE_SIMPLE_PLAN (SIMPLE_PLAN => ‘system_plan’,
    CONSUMER_GROUP1 => ‘APPUSER’, GROUP1_CPU3 => 60,
    CONSUMER_GROUP2 => ‘LOW_GROUP’, GROUP2_CPU3 => 40);
    END;
    When executing the statement, I get the following error message:
    Error message:
    ERROR at line 2:
    ORA-06550: line 2, column 1:
    PLS-00306: wrong number or types of arguments in call to 'CREATE_SIMPLE_PLAN'
    ORA-06550: line 2, column 1:
    PL/SQL: Statement ignored
    Edited by: 976505 on Mar 6, 2013 1:53 PM

  • AD Group Change, Can this be made User self requestable in oim?

    Hi,
    We have a typical requirement where in end user will be requesting for a group change in AD, on Approval he is made member of the group he requested.Can any one suggest how this can be achievable. Any pointers on this is highly appreciated.
    Thanks in Advance.

    Hi all,
    I had this same requirement (Approval process for AD group assignment). So, I have implemented the process you have defined. It is working fine except one problem.
    When I add the first OIM group(group A) to OIM user, it will fire an approval process(using Access policy) and after the approver approve it, RO ("AD Group Resource") will be granted to the user. Also, ad information will be updated through my custom code.
    But, if I then try to add another OIM group(group B) to the same OIM user, OIM will just assign OIM group to this OIM User. other than that, OIM will not do anything. No approval process will be fired.
    (Note: There is no error in the implementation. i.e. if I try to do this in the other way around, i.e. first add the group B and then add the group A, same result. Information regarding assignment of group B will be updated on AD and RO will be granted. But, assignment of group A would not do anything)
    Please help me regarding this issue.
    Regards,
    Chaturanga

  • Stream analytics - Exceeded the maximum number of allowed receivers per partition in a consumer group which is 5

    Hi,
      I have configure stream analytics to read messages from eventhub and I am getting this error message:Correlation ID:
    e185534f-9e82-4efc-8050-5294796fb275
    Error:
    Exceeded the maximum number of allowed receivers per partition in a consumer group which is 5 TrackingId:4569eca8-cb70-4c50-96cd-5868bfbc3e37_B45,TimeStamp:1/7/2015 11:40:37 PM TrackingId:f408292e-0dab-40cc-8ae9-2730313c3241_B45, Reference:8fca3c6a-b0d1-41cf-a835-f7c74a2ea8c3,
    Timestamp:1/7/2015 11:40:37 PM
    Message:
    Exceeded the maximum number of allowed receivers per partition in a consumer group which is 5
    Message Time:
    2015-01-07 23:40:38Z
    Microsoft.Resources/EventNameV2:
    sharedNode92F920DE-290E-4B4C-861A-F85A4EC01D82.naveenevents_0_c76f7247_25b7_4ca6_a3b6_c7bf192ba44a#0.output
    Microsoft.Resources/Operation:
    Receive Events
    Microsoft.Resources/ResourceUri:
    /subscriptions/f122f431-ddc7-4e21-ae3a-f6a9e1273bcb/resourceGroups/StreamAnalytics-Default-Central-US/providers/Microsoft.StreamAnalytics/streamingjobs/Naveenstreamanalytics
    Type:
    EventHubInputAdapterEventHubFailure
    Any help on the same is appreciated.
    Thanks
    Naveen

    Hi Naveen,
    Thanks for reporting this issue. We are taking a look at this issue.
    Questions:
    Do you have multiple readers reading from this EventHub, or have you setup multiple Stream Analystics jobs reading from this event hub. You are hitting a limitation of how many readers are allowed per EH consumer group.
    What is the serialization format of your input (JSON/CSV)? Could you please verify the serialization format setup in the streaming job and if it matches your data?
    Thanks
    Zafar Abbas

  • Oracle Failsafe - Add Resource to Group

    hi to all,
    i have a question about using Oracle Failsafe.
    I have had a 2 Node Cluster (Czvsor1 and czvsor2) with Clustergroup and Oracle Group with database db1 in it on node czvsor1 with perfect working failover to node czvsor2 managed by Failsafe Manager - All running on windows2003 server.
    Now i wanted to bring up a third node czvsor3 with the database ORCFIBU on it, adding this node to cluster , creating a second oracle group on this node, add resource (database) to this group and manage it with failsafe manger to failover to my second node czvsor2 when needed.
    Everything went perfect - adding node to cluster, creating and testing oracle group 2 with 2 SAN devices, moving oracle group no node 2 and back again.
    BUT adding database to group failed - errors in verifying Devices
    Here are the protokolls:
    Verify Cluster
    Versions: client = 3.3.3 server = 3.3.3 OS =
    Operation: Verifying cluster "CZVSOR03"
    Starting Time: Aug 08, 2007 10:42:51
    Elapsed Time: 0 minutes, 1 seconds
    1 10:42:51 Starting clusterwide operation
    2 10:42:51 > FS-10998:
    3 10:42:51 FS-10500: CZVSOR1 : Starting verification of cluster CZVSOR03
    4 10:42:51 > FS-10998:
    5 10:42:51 FS-10544: CZVSOR1 : Verifying the cluster quorum resource
    6 10:42:51 > FS-10545: Cluster quorum resource Disk Q: is located at Q:\MSCS\
    7 10:42:51 > FS-10998:
    8 10:42:51 FS-10660: CZVSOR1 : Gathering cluster information
    9 10:42:51 > FS-10998:
    10 10:42:51 FS-10660: CZVSOR3 : Gathering cluster information
    11 10:42:52 > FS-10998:
    12 10:42:52 FS-10660: CZVSOR2 : Gathering cluster information
    13 10:42:52 > FS-10998:
    14 10:42:52 FS-10502: CZVSOR1 : Verifying the Oracle homes
    15 10:42:52 > FS-10645: CZVSOR1 has home OfsHome33 in D:\oracle\Ofs33
    16 10:42:52 > FS-10645: CZVSOR1 has home OraDb10g_Db in D:\oracle\product\10.2.0\db_1
    17 10:42:52 > FS-10645: CZVSOR3 has home OfsHome33 in D:\oracle\Ofs33
    18 10:42:52 > FS-10645: CZVSOR3 has home OraDb10g_Db in D:\oracle\product\10.2.0\db_1
    19 10:42:52 > FS-10645: CZVSOR2 has home OfsHome33 in D:\oracle\Ofs33
    20 10:42:52 > FS-10645: CZVSOR2 has home OraDb10g_Db in D:\oracle\product\10.2.0\db_1
    21 10:42:52 > FS-10998:
    22 10:42:52 FS-10501: CZVSOR1 : Verifying the Oracle Services for MSCS installation
    23 10:42:52 >>> FS-10652: CZVSOR1 has Oracle Services for MSCS version 3.3.4.0 installed in OfsHome33
    24 10:42:52 >>> FS-10652: CZVSOR3 has Oracle Services for MSCS version 3.3.4.0 installed in OfsHome33
    25 10:42:52 >>> FS-10652: CZVSOR2 has Oracle Services for MSCS version 3.3.4.0 installed in OfsHome33
    26 10:42:52 > FS-10998:
    27 10:42:52 FS-10650: CZVSOR1 : Verifying the Oracle Services for MSCS resource providers
    28 10:42:52 > FS-10651: Verifying the Generic Service resource
    29 10:42:52 >> FS-10665: Checking DLLs for resource provider
    30 10:42:52 > FS-10998:
    31 10:42:52 > FS-10651: Verifying the Oracle Management Agent resource
    32 10:42:52 >> FS-10665: Checking DLLs for resource provider
    33 10:42:52 >> FS-10667: Checking for software installation
    34 10:42:52 ** WARNING : FS-10658: The Oracle Management Agent software is not installed on any of the cluster nodes
    35 10:42:52 > FS-10998:
    36 10:42:52 > FS-10651: Verifying the Oracle Application Server resource
    37 10:42:52 >> FS-10665: Checking DLLs for resource provider
    38 10:42:52 >> FS-10667: Checking for software installation
    39 10:42:52 ** WARNING : FS-10658: The Oracle Application Server software is not installed on any of the cluster nodes
    40 10:42:52 > FS-10998:
    41 10:42:52 > FS-10651: Verifying the Oracle Database resource
    42 10:42:52 >> FS-10665: Checking DLLs for resource provider
    43 10:42:52 >> FS-10666: Checking for MSCS resource DLLs provided by Oracle
    44 10:42:52 >> FS-10667: Checking for software installation
    45 10:42:52 >>> FS-10652: CZVSOR1 has Oracle Database version 10.2.0 installed in OraDb10g_Db
    46 10:42:52 >>> FS-10652: CZVSOR3 has Oracle Database version 10.2.0 installed in OraDb10g_Db
    47 10:42:52 >>> FS-10652: CZVSOR2 has Oracle Database version 10.2.0 installed in OraDb10g_Db
    48 10:42:52 > FS-10998:
    49 10:42:52 FS-10503: CZVSOR1 : Verifying the network configuration
    50 10:42:52 > FS-10510: Public network on the cluster uses subnet 172.22.111.96
    51 10:42:52 > FS-10510: Private network on the cluster uses subnet 192.168.32.0
    52 10:42:52 > FS-10998:
    53 10:42:52 > FS-10512: CZVSOR1 maps to 172.22.111.118, 192.168.32.1 on CZVSOR1
    54 10:42:52 > FS-10512: CZVSOR1 maps to 172.22.111.118 on CZVSOR3
    55 10:42:52 > FS-10512: CZVSOR1 maps to 172.22.111.118 on CZVSOR2
    56 10:42:52 > FS-10998:
    57 10:42:52 > FS-10512: CZVSOR3 maps to 172.22.111.120 on CZVSOR1
    58 10:42:52 > FS-10512: CZVSOR3 maps to 172.22.111.120, 192.168.32.3 on CZVSOR3
    59 10:42:52 > FS-10512: CZVSOR3 maps to 172.22.111.120 on CZVSOR2
    60 10:42:52 > FS-10998:
    61 10:42:52 > FS-10512: CZVSOR2 maps to 172.22.111.119 on CZVSOR1
    62 10:42:52 > FS-10512: CZVSOR2 maps to 172.22.111.119 on CZVSOR3
    63 10:42:52 > FS-10512: CZVSOR2 maps to 172.22.111.119, 192.168.32.2 on CZVSOR2
    64 10:42:52 > FS-10998:
    65 10:42:52 > FS-10512: CZVSOC02 maps to 172.22.111.115 on CZVSOR1
    66 10:42:52 > FS-10512: CZVSOC02 maps to 172.22.111.115 on CZVSOR3
    67 10:42:52 > FS-10512: CZVSOC02 maps to 172.22.111.115 on CZVSOR2
    68 10:42:52 > FS-10998:
    69 10:42:52 > FS-10512: CZVSOR03 maps to 172.22.111.117 on CZVSOR1
    70 10:42:52 > FS-10512: CZVSOR03 maps to 172.22.111.117 on CZVSOR3
    71 10:42:52 > FS-10512: CZVSOR03 maps to 172.22.111.117 on CZVSOR2
    72 10:42:52 > FS-10998:
    73 10:42:52 > FS-10512: CZVSOC01 maps to 172.22.111.116 on CZVSOR1
    74 10:42:52 > FS-10512: CZVSOC01 maps to 172.22.111.116 on CZVSOR3
    75 10:42:52 > FS-10512: CZVSOC01 maps to 172.22.111.116 on CZVSOR2
    76 10:42:52 > FS-10998:
    77 10:42:52 The clusterwide operation completed successfully, however, the server reported some warnings.
    That seems to be ok!!
    CZVSOR03 Name of Cluster
    CZVSOR1/CZVSOR2/CZVSOR3 Name of Nodes
    CZVSOC01 Name of first Oracle Group preferred node CZVSOR1
    - works perfect -
    CZVSOC02 Name of second Oracle Group on Node CZVSOR3
    Following reported Problems by adding database to resource
    ADD Resource to Group – Oracle Database
    Versions: client = 3.3.3 server = 3.3.3 OS =
    Operation: Adding resource "ORCFIBU" to group "Oracle Group 2"
    Starting Time: Aug 08, 2007 13:21:28
    Elapsed Time: 0 minutes, 31 seconds
    1 13:21:28 Starting clusterwide operation
    2 13:21:28 FS-10370: Adding the resource ORCFIBU to group Oracle Group 2
    3 13:21:28 FS-10371: CZVSOR3 : Performing initialization processing
    4 13:21:28 FS-10371: CZVSOR2 : Performing initialization processing
    5 13:21:29 FS-10372: CZVSOR3 : Gathering resource owner information
    6 13:21:29 FS-10372: CZVSOR2 : Gathering resource owner information
    7 13:21:29 FS-10373: CZVSOR3 : Determining owner node of resource ORCFIBU
    8 13:21:29 FS-10374: CZVSOR3 : Gathering cluster information needed to perform the specified operation
    9 13:21:29 FS-10374: CZVSOR2 : Gathering cluster information needed to perform the specified operation
    10 13:21:29 FS-10375: CZVSOR3 : Analyzing cluster information needed to perform the specified operation
    11 13:21:29 >>> FS-10652: CZVSOR3 has Oracle Database version 10.2.0 installed in OraDb10g_Db
    12 13:21:29 >>> FS-10652: CZVSOR2 has Oracle Database version 10.2.0 installed in OraDb10g_Db
    13 13:21:29 FS-10376: CZVSOR3 : Starting configuration of resource ORCFIBU
    14 13:21:29 FS-10378: CZVSOR3 : Preparing for configuration of resource ORCFIBU
    15 13:21:29 FS-10380: CZVSOR3 : Configuring virtual server information for resource ORCFIBU
    16 13:21:30 > FS-10496: Generating the Oracle Net migration plan for ORCFIBU
    17 13:21:30 > FS-10490: Configuring the Oracle Net listener for ORCFIBU
    18 13:21:30 >> FS-10600: Oracle Net configuration file updated: D:\ORACLE\PRODUCT\10.2.0\DB_1\NETWORK\ADMIN\LISTENER.ORA
    19 13:21:30 >> FS-10606: Listener configuration updated in database parameter file: K:\ORCFIBU\initorcfibu.ora
    20 13:21:37 >> FS-10605: Oracle Net listener Fslczvsoc02 created
    21 13:21:39 >> FS-10602: Oracle Net listener FIBU_1 restarted
    22 13:21:39 > FS-10491: Configuring the Oracle Net service name for ORCFIBU
    23 13:21:39 >> FS-10600: Oracle Net configuration file updated: D:\ORACLE\PRODUCT\10.2.0\DB_1\NETWORK\ADMIN\TNSNAMES.ORA
    24 13:21:39 FS-10381: CZVSOR3 : Creating the resource information for resource ORCFIBU
    25 13:21:39 > FS-10424: Checking whether the database ORCFIBU is online
    26 13:21:55 > FS-10425: Querying the disks used by the database ORCFIBU
    27 13:21:56 ** ERROR : FS-10034: Error while querying for disks used by database instance ORCFIBU
    28 13:21:56 ** ERROR : FS-10778: The Oracle Database resource provider failed to configure the cluster resource ORCFIBU
    29 13:21:56 ** ERROR : FS-10890: Oracle Services for MSCS failed during the add operation
    30 13:21:56 ** ERROR : FS-10497: Starting clusterwide rollback of the operation
    31 13:21:56 FS-10488: CZVSOR3 : Starting rollback of operation
    32 13:21:56 > FS-10090: Rolling back Oracle Net changes on node CZVSOR3
    33 13:21:59 FS-10489: CZVSOR3 : Completed rollback of operation
    34 13:21:59 ** ERROR : FS-10495: Clusterwide rollback of the operation has been completed
    35 13:21:59 Please check your Windows Application log using the Event Viewer for any additional errors
    36 13:21:59 The clusterwide operation failed !
    ANY IDEAS WHATS WRONG????????
    Group has 2 SAN DEVICES K and L which i can move without any problems to node czvsor2 and back - but without the database.
    Normally my First node CZVSOR1 with Oracle Group CZVSOC01 on it is not involved for i removed this node from the available nodes list in my new group CZVSOC2
    DO i have to make K an L available from Node 1 CZVSOR1 ????
    General Question is it possible to have a 3 node Cluster with the following Configuration
    Node1 with Oracle Group 1 and database 1 managed to failover to node2
    Node3 with oracle Group 2 and database 2 managed to failover to node 2
    PLEASE I NEED URGENT HELP
    MANY MANY THANKS TO ALL!
    Joachim

    Yes, but yet not find a solution.
    we restarted the installation from scratch and now we are at the phase of the database instance.
    We noticed the following during the configuration of the first MSCS node :
    at the time where sapinst creates the sap cluster group, we get the error:
    "could not create sap cluster group. Please look at R3Clus.log"
    Behind it appears a screen where we are prompted to add manually the values. We added manually the values and then the sap cluster group was succesfully created and the configuration of the first MSCS node finished without reporting errors.
    But we noticed that although the SAPLOC share is normaly created in HA installation through ASCS installation and automatically removed when processing First MSCS Node, it was not removed at our case.
    We would like to know if the whole above symptom is normal or we must
    expect problems at the continuing of the installation of ECC6?
    If it is not normal what else we can do, so that sapinst do not
    stop at the creation of the sap cluster group ?

  • Oracle consumer group

    Hi, we are development one application with java and oracle. We have oracle 10G R2 SE. This application will be batch process in pl/sql every night, and some evenings. These proccess must be running in background, and we want priorize for online users. We don't want that plsql batch processes consum a high value of CPU and the online users can be slower. I read something about oracle consumer's group resources, but I don't understand very well.
    Anyone, know which is the better way for do that? It's recommed the user of oracle consumers or another method?
    How can I use it?
    Thanks you very much!!

    roberto1979es wrote:
    Hi, we are development one application with java and oracle. We have oracle 10G R2 SE. This application will be batch process in pl/sql every night, and some evenings. These proccess must be running in background, and we want priorize for online users. We don't want that plsql batch processes consum a high value of CPU and the online users can be slower. I read something about oracle consumer's group resources, but I don't understand very well.
    Anyone, know which is the better way for do that? It's recommed the user of oracle consumers or another method?
    How can I use it?In simplest terms, a session is associated with a consumer group. The resource manager is used to define plans which describe the resources available to each consumer group. The resource manager is then used to activate one specific plan.
    It is described in considerable detail in the DBA manual at http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/dbrm.htm#i1010776
    I am not sure whether this will help you in SE because according to the license manual the Resource Manager is only with EE. http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/editions.htm#CIHDDBCG

  • Permissions for Style Resource Readers Group

    Hello
    I am in the process of cleaning up permissions for my SharePoint 2013 site and looking at this link http://technet.microsoft.com/en-us/library/cc262690.aspx, it states very clearly that the Style Resource Readers group should have permissions such as 'Read
    to the Master Page Gallery and Restricted Read to the Style Library'.
    On my SharePoint 2013 site, I go to Site Settings > People and Groups > Style Resource Readers. I then click Settings > View Group Permissions and I noticed that this group also has "Limited Access" to the homepage, a sub site, the publishedlinks
    folder, Quick Deploy Items and Site Collection Images folders.
    Does the Style Resource Readers group need access to these folders and if not how do I change the permissions for this group?
    Thanks for any suggestions.
    Yoshi

    You do not need to modify anything with Style Resource Reader group unless you are planning on adding users to that group. Personally I will advise against it. 
    Limited Access in SharePoint means that there are permission assigned to a user or group on one or more site artifacts i.e. list, folder, item but no permission is assigned to access site.
    So Style Resource Readers group out of the box has the Read permission to master page gallery. If you read the description it reads.
    "Members of this group are given read permission to the master page gallery and the Restricted read permission to the Style Library. By default,
    all authenticated users are a member of this group."
    So don't worry about this group and leave it as is given SharePoint already assigned required permission at the master page gallery and style library level for this group.
    Amit

  • SAP query for Material pricing group changes in material.

    Dear all,
    I'm trying to generate a query for Material Pricing group changes in material. For that I've to retrieve data from follwing three tables MVKE, CDHDR & CDPOS.
    Firstly while generating infoset -
    I tried it by joining tables MVKE & CDHDR, but system is not allowing it, also table CDPOS can't bejoined.
    Then I tried by reading dirctly from table MVKE and then adding additional fields in it. query created using this infoset is giving the output, however it's giving only 1 entry per material entered in input.
    for multiple entries in output for MPG changes in same material I tried creating addtional structure for table CDHDR & CDPOS but again I'm getting only 1 entry per material.
    please suggest how I can get MPG changes done in specified time period for a material.
    Thanks.

    Hi
    Check the report RSSCD100 and run it for object MAT_FULL for table MVKE. Use this report as a template for your own development.
    I hope this helps you
    Regards
    Eduardo
    PD: sorry, the table is DMVKE
    Edited by: E_Hinojosa on Sep 2, 2011 9:37 AM

  • How I check in group by query the group change

    How I check in group by query the group change
    Hi master
    Sir I have master detail table
    This is my query
    select rownum,chartofacc.accid,title,nvl(drbal,0),nvl(crbal,0),
    (select case when nvl(sum(debit),0)-nvl(sum(credit),0)>0 then
    nvl(sum(debit),0)-nvl(sum(credit),0)
    else
    0
    end mfadrttt
    from voudetail where voudetail.accid=chartofacc.accid) as mfadr,
    (select case when nvl(sum(credit),0)-nvl(sum(debit),0)>0 then
    nvl(sum(credit),0)-nvl(sum(debit),0)
    else
    0
    end mfacrttt
    from voudetail where voudetail.accid=chartofacc.accid) as mfacr
    ,nvl(debit,0),nvl(credit,0),voumaster.entdate,voumaster.vno from chartofacc ,accbal,voudetail,voumaster where chartofacc.accid=accbal.accid(+) and chartofacc.accid=voudetail.accid(+) and voumaster.vno=voudetail.vno order by chartofacc.accid,voumaster.entdate,voudetail.VNO;
    Sir I need add opbal from master section to debit in detail section when new group start only after adding I use that column for accumulative total or running balance
    If I get any method when group change system give me any key or indication then I use
    Please give me idea in both field oracle sql and oracle report 6i
    Thank
    aamir

    Hi,
    Please send tables structures and sample data from that tables. And, of course what should be the output. :) Just sending your query won't help us to find a solution.
    Peter D.

  • SEM-BCS Preparation for Consolidation Group Changes

    Hi All,
    Is the task "Preparation for Consolidation Group Changes" only implemented when Consolidation of Investments has also been implemented?
    Does "Preparation for Consolidation Group Changes" have any value on its own?
    Any comments, replies or suggestions most welcome.

    Hi,
    I think that prep for cons group changes is independent (but supplementary to) from CoI.
    See what is said in help:
    "When in the middle of a fiscal year a consolidation unit is either acquired by a consolidation group (acquisition), divested from a consolidation group (divestiture), or <b>changes its accounting technique</b> (method change), the following data must be adjusted:
    - Reported financial data
    - Standardized financial data
    - Consolidated data with posting level 20"
    As you can see, not only consolidated data are to be changed, but also Standardized and Reported.
    Moreover, as is seen above, changes of accounting technique will also trigger such activities.
    So, my answers:
    1. No
    2. Yes.
    Best regards,
    Eugene

Maybe you are looking for