Grouping of Instances?

Hi All,
What Exactly is Sequence,Group,Container Instance,Container Island? is it possible to get the details of these from Command line.
How to group Instances of Oracle 9iAS running in Various Machines Under one group?.(Please see the page 6-4 of Oracle 9i Apps Server Admin Guide ).
Regds
Sree

Sree,
Please post OC4J/J2EE questions on that forum. You will get better responses.
There's cool tool that let's you visualize processes, islands, etc.
See: http://otn.oracle.com/products/ias/ias_utilities.html#ihat
Hope this helps,
Ashesh Parekh
Oracle9iAS Product Manager

Similar Messages

  • SMLG logon group "looses" instance

    Hello
    we have a logon group defined, which includes only one instance. Lately it happens that this logon group becomes unavailable for logon. No sessions are broken, only new logons are rejected.
    When this happens, in transaction SMLG in Load Distribution, the instance shows response time and number of users 0, and below, where it is shown which instance is currently active for a logon group there is a blank field instead of the instance name.
    This is very easily resolved, if we simply click on the instance status above, it gets refreshed, and everything is OK again.
    Has anyone had a similar experience, and do you have an idea of what could cause this situatuion?
    Thanks
    A

    Hi Aleksandra ,
    There is some problem if you distributing load from cetral intance and local one....
    Please change the logon group for central instance...then you need to restart your server to take reflect.
    We have similar issue,,, we have change for central instance and restarted.. it works
    Hope this will help you.
    Thanks
    Arun

  • (ORACLE 8.X OPS)  INSTANCE GROUP

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-13
    [ORACLE 8.X OPS] INSTANCE GROUP
    ================================
    SCOPE
    Oracle Parallel Server(OPS) Option은 8~9i Standard Edition에서는 지원하지
    않는다.
    Explanation
    Oracle 8이상부터 관리상의 목적으로 인스턴스들을 몇개의 논리적 그룹으로 나누어,
    그룹단위로 작업을 수행할 수 있다.
    인스턴스 그룹은 특정한 목적을 ( 자원 할당, parallel query 등 ) 위해 인스턴스들을 그룹화 시킨 것이다.
    따라서 자원에 대한 partition을 효율적으로 할 수 있게 한다.
    1. Instance Group의 지정방법
    인스턴스 그룹을 지정하기 위해서는 인스턴스 그룹에 포함시킬 인스턴스에서
    initSID.ora file에 INSTANCE_GROUPS를 지정하여야 한다.
    예를 들어 instance 1에서는 파라미터 값을 다음과 같이 지정할 수 있다.
    INSTANCE_GROUPS = groupB, groupD
    그리고 instance 3에서는 다음과 같이 지정되어 있을 수 있다.
    INSTANCE_GROUPS = groupA, groupD
    위와 같은 상황에서 instance 1과 3은 모두 인스턴스 그룹 group D에 속한다. 뿐만 아니라 다른 그룹에도 속한다.
    2. Instance Group의 사용방법
    인스턴스 그룹을 다음 두가지 이유에 따라 사용할 수 있다.
    1) Parallel operation 작업시 group 지정 ( PARALLEL_INSTANCE_GROUP )
    2) GV$에 대한 조회시, 결과를 돌려줄 인스턴스의 지정 ( OPS_ADMIN_GROUP: oracle8.0에서만 사용가능함 )
    PARALLEL_INSTANCE_GROUP과 OPS_ADMIN_GROUP의 기본값은, 실행중인 모든 인스턴스이다.
    a. PARALLEL_INSTANCE_GROUP
    Parallel Operation을 처리할 때 인스턴스 그룹을 지정하기 위해서는 initSID.ora 파일에 다음과 같이 지정해야 한다.
    PARALLEL_INSTANCE_GROUP = groupname
    PARALLEL_INSTANCE_GROUP 파라미터가 지정된 인스턴스에서 발생한
    모든 parallel operation은 그룹내에서 처리된다.
    PARALLEL_INSTANCE_GROUP은 ALTER SESSION이나 ALTER SYSTEM 문으로 값을 바꿀 수 있는 dynamic 파라미터이다.
    기본값은 현재 실행중인 모든 인스턴스이다. PARALLEL_INSTANCE_GROUP에는 그 값을 지정한 인스턴스가 포함되지 않아도 된다.
    b. OPS_ADMIN_GROUP ( Oracle 8.0 ops only)
    GV$ 관련 뷰를 조회할 때 결과를 취합할 인스턴스들은 OPS_ADMIN_GROUP 파라미터로 지정한다.
    Example
    1. Instance Group의 member 조회 방법
    인스턴스 그룹의 멤버들을 조회하기 위해서는 GV$PARAMETER를 조회하면 된다.
    조회 결과로는 INSTANCE_GROUPS 파라미터의 값들이 출력된다.
    2. case study
    인스턴스 1의 initialization 파라미터 파일에 다음과 같이 지정되어 있다.
    INSTANCE_GROUPS = Ga, Gb
    PARALLEL_INSTANCE_GROUP = Gb
    인스턴스 2의 initialization 파라미터 파일에 다음과 같이 지정되어 있다.
    INSTANCE_GROUPS = Gb, Gc
    PARALLEL_INSTANCE_GROUP = Gc
    인스턴스 1에서 다음과 같은 명령을 수행할 때는 Gb 그룹에 속하는 인스턴스들에서 작업이 수행된다.
    두개의 parallel server process가 인스턴스 1과 2에서 생성된다.
    ALTER TABLE table PARALLEL (DEGREE 2 INSTANCES 2);
    SELECT COUNT(*) FROM table;
    만약 아래 명령을 인스턴스 2에서 수행시키면 Gc 그룹이 사용된다. 이때 두개의 parallel server process는 인스턴스 2에서만 생성된다.
    ALTER SESSION SET PARALLEL_INSTANCE_GROUP = 'Gc';
    SELECT COUNT(*) FROM table;
    다음 명령을 인스턴스 1에서 실행시키면 기본 인스턴스 그룹 ( 모든 인스턴스 ) 이 사용된다.
    두개의 parallel server process가 인스턴스 1, 2 에서 생성된다.
    ALTER SESSION SET PARALLEL_INSTANCE_GROUP = '';
    SELECT COUNT(*) FROM table;
    Reference Ducumment
    Oracle8 Parallel Server Concepts & Administration

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-13
    [ORACLE 8.X OPS] INSTANCE GROUP
    ================================
    SCOPE
    Oracle Parallel Server(OPS) Option은 8~9i Standard Edition에서는 지원하지
    않는다.
    Explanation
    Oracle 8이상부터 관리상의 목적으로 인스턴스들을 몇개의 논리적 그룹으로 나누어,
    그룹단위로 작업을 수행할 수 있다.
    인스턴스 그룹은 특정한 목적을 ( 자원 할당, parallel query 등 ) 위해 인스턴스들을 그룹화 시킨 것이다.
    따라서 자원에 대한 partition을 효율적으로 할 수 있게 한다.
    1. Instance Group의 지정방법
    인스턴스 그룹을 지정하기 위해서는 인스턴스 그룹에 포함시킬 인스턴스에서
    initSID.ora file에 INSTANCE_GROUPS를 지정하여야 한다.
    예를 들어 instance 1에서는 파라미터 값을 다음과 같이 지정할 수 있다.
    INSTANCE_GROUPS = groupB, groupD
    그리고 instance 3에서는 다음과 같이 지정되어 있을 수 있다.
    INSTANCE_GROUPS = groupA, groupD
    위와 같은 상황에서 instance 1과 3은 모두 인스턴스 그룹 group D에 속한다. 뿐만 아니라 다른 그룹에도 속한다.
    2. Instance Group의 사용방법
    인스턴스 그룹을 다음 두가지 이유에 따라 사용할 수 있다.
    1) Parallel operation 작업시 group 지정 ( PARALLEL_INSTANCE_GROUP )
    2) GV$에 대한 조회시, 결과를 돌려줄 인스턴스의 지정 ( OPS_ADMIN_GROUP: oracle8.0에서만 사용가능함 )
    PARALLEL_INSTANCE_GROUP과 OPS_ADMIN_GROUP의 기본값은, 실행중인 모든 인스턴스이다.
    a. PARALLEL_INSTANCE_GROUP
    Parallel Operation을 처리할 때 인스턴스 그룹을 지정하기 위해서는 initSID.ora 파일에 다음과 같이 지정해야 한다.
    PARALLEL_INSTANCE_GROUP = groupname
    PARALLEL_INSTANCE_GROUP 파라미터가 지정된 인스턴스에서 발생한
    모든 parallel operation은 그룹내에서 처리된다.
    PARALLEL_INSTANCE_GROUP은 ALTER SESSION이나 ALTER SYSTEM 문으로 값을 바꿀 수 있는 dynamic 파라미터이다.
    기본값은 현재 실행중인 모든 인스턴스이다. PARALLEL_INSTANCE_GROUP에는 그 값을 지정한 인스턴스가 포함되지 않아도 된다.
    b. OPS_ADMIN_GROUP ( Oracle 8.0 ops only)
    GV$ 관련 뷰를 조회할 때 결과를 취합할 인스턴스들은 OPS_ADMIN_GROUP 파라미터로 지정한다.
    Example
    1. Instance Group의 member 조회 방법
    인스턴스 그룹의 멤버들을 조회하기 위해서는 GV$PARAMETER를 조회하면 된다.
    조회 결과로는 INSTANCE_GROUPS 파라미터의 값들이 출력된다.
    2. case study
    인스턴스 1의 initialization 파라미터 파일에 다음과 같이 지정되어 있다.
    INSTANCE_GROUPS = Ga, Gb
    PARALLEL_INSTANCE_GROUP = Gb
    인스턴스 2의 initialization 파라미터 파일에 다음과 같이 지정되어 있다.
    INSTANCE_GROUPS = Gb, Gc
    PARALLEL_INSTANCE_GROUP = Gc
    인스턴스 1에서 다음과 같은 명령을 수행할 때는 Gb 그룹에 속하는 인스턴스들에서 작업이 수행된다.
    두개의 parallel server process가 인스턴스 1과 2에서 생성된다.
    ALTER TABLE table PARALLEL (DEGREE 2 INSTANCES 2);
    SELECT COUNT(*) FROM table;
    만약 아래 명령을 인스턴스 2에서 수행시키면 Gc 그룹이 사용된다. 이때 두개의 parallel server process는 인스턴스 2에서만 생성된다.
    ALTER SESSION SET PARALLEL_INSTANCE_GROUP = 'Gc';
    SELECT COUNT(*) FROM table;
    다음 명령을 인스턴스 1에서 실행시키면 기본 인스턴스 그룹 ( 모든 인스턴스 ) 이 사용된다.
    두개의 parallel server process가 인스턴스 1, 2 에서 생성된다.
    ALTER SESSION SET PARALLEL_INSTANCE_GROUP = '';
    SELECT COUNT(*) FROM table;
    Reference Ducumment
    Oracle8 Parallel Server Concepts & Administration

  • I get a Group Policy Disk Quota failure at every system start

    This is very long, my apologies
    I asked this question about a month ago and then had some medical problems so I'm starting over again.
    Whenever I start my system I get a message on the screen that the system is trying to run Group Policy for Disk Quotas.  To my knowledge I've never set a disk quota policy and I can't find any indication that one is currently set.  I freely admit
    that I could be responsible for this.  I might have done something in the early days of the system because it wasn't happening for the first month or two.
    This time I did more reading and found a procedure on TechNet at:
    "http://technet.microsoft.com/en-us/library/cc749336(WS.10).aspx" which led me step by step through the procedure, although I still can't make sense of the results.
    So far I've verified that there are no policies set and that all the hard drives (3) have the Disk Quota bit 'disabled'.  I did this as 'Administrator'.
    The results from the TechNet procedure turned out to be quite long but I'm listing it here in hope that someone in the community will be familiar with this problem and be able to use the information to figure out the problem. 
    Here are the results:
    From: TechNet Group Policy Testing
    ( "http://technet.microsoft.com/en-us/library/cc749336(WS.10).aspx" )
    1 - Troubleshooting using the Group Policy operational log
          a - Determine the instance of Group Policy processing
               (Before you view the Group Policy operational log, you must first determine 
               the instance of Group Policy processing that failed.)
    My ActivityID from the Group Policy operational log = C87E5BC2-FD21-4794-B678-787AB587D8D5
    2 - Create a custom view, via a query, of the Group Policy instance
    My resultant query:
    <QueryList><Query Id="0" Path="Application"><Select Path="Microsoft-Windows-GroupPolicy/Operational">*[System/Correlation/@ActivityID='{C87E5BC2-FD21-4794-B678-787AB587D8D5}']</Select></Query></QueryList>
    3 - Results of running the query from step 2 are listed below, in chronological order, including the complete 'detail' sections from each event.
    event 4000
    Event Description(s) = Computer startup
    BEGIN DETAIL SECTION-----------------------------------------------------------------------------
    - System 
      - Provider 
       [ Name]  Microsoft-Windows-GroupPolicy 
       [ Guid]  {AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9} 
        EventID 4000 
        Version 1 
        Level 4 
        Task 0 
        Opcode 1 
        Keywords 0x4000000000000000 
       - TimeCreated 
       [ SystemTime]  2010-05-15T13:29:33.598400000Z 
        EventRecordID 22707 
       - Correlation 
       [ ActivityID]  {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
       - Execution 
       [ ProcessID]  1280 
       [ ThreadID]  1784 
        Channel Microsoft-Windows-GroupPolicy/Operational 
        Computer GROK 
       - Security 
       [ UserID]  S-1-5-18 
     - EventData 
      PolicyActivityId {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
      PrincipalSamName WORKGROUP\GROK$ 
      IsMachine 1 
      IsDomainJoined false 
      IsBackgroundProcessing false 
      IsAsyncProcessing false 
      IsServiceRestart false 
      ReasonForSyncProcessing 2 
    END DETAIL SECTION-------------------------------------------------------------------------------
    event 5320
    Event Description(s) = Checking for Group Policy client extensions that are not part of the system.
    Event Description(s) = Service configuration update to standalone is not required and will be skipped.
    BEGIN DETAIL SECTION------------------------------------------------------------------------------
    - System 
      - Provider 
       [ Name]  Microsoft-Windows-GroupPolicy 
       [ Guid]  {AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9} 
        EventID 5320 
        Version 0 
        Level 4 
        Task 0 
        Opcode 0 
        Keywords 0x4000000000000000 
       - TimeCreated 
       [ SystemTime]  2010-05-15T13:29:33.614000000Z 
        EventRecordID 22711 
       - Correlation 
       [ ActivityID]  {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
       - Execution 
       [ ProcessID]  1280 
       [ ThreadID]  1784 
        Channel Microsoft-Windows-GroupPolicy/Operational 
        Computer GROK 
       - Security 
       [ UserID]  S-1-5-18 
     - EventData 
      InfoDescription %%4161 
    END DETAIL SECTION-------------------------------------------------------------------------------
    event 5313
    Event Description(s) = The following Group Policy objects were not applicable because they were filtered out : 
    BEGIN DETAIL SECTION------------------------------------------------------------------------------
    - System 
      - Provider 
       [ Name]  Microsoft-Windows-GroupPolicy 
       [ Guid]  {AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9} 
        EventID 5313 
        Version 0 
        Level 4 
        Task 0 
        Opcode 0 
        Keywords 0x4000000000000000 
       - TimeCreated 
       [ SystemTime]  2010-05-15T13:29:33.614000000Z 
        EventRecordID 22710 
       - Correlation 
       [ ActivityID]  {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
       - Execution 
       [ ProcessID]  1280 
       [ ThreadID]  1784 
        Channel Microsoft-Windows-GroupPolicy/Operational 
        Computer GROK 
       - Security 
       [ UserID]  S-1-5-18 
     - EventData 
      DescriptionString None 
      GPOInfoList  
    END DETAIL SECTION-------------------------------------------------------------------------------
    event 5311
    Event Description(s) = The loopback policy processing mode is "No loopback mode".
    BEGIN DETAIL SECTION------------------------------------------------------------------------------
    - System 
      - Provider 
       [ Name]  Microsoft-Windows-GroupPolicy 
       [ Guid]  {AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9} 
        EventID 5311 
        Version 0 
        Level 4 
        Task 0 
        Opcode 0 
        Keywords 0x4000000000000000 
       - TimeCreated 
       [ SystemTime]  2010-05-15T13:29:33.614000000Z 
        EventRecordID 22708 
       - Correlation 
       [ ActivityID]  {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
       - Execution 
       [ ProcessID]  1280 
       [ ThreadID]  1784 
        Channel Microsoft-Windows-GroupPolicy/Operational 
        Computer GROK 
       - Security 
       [ UserID]  S-1-5-18 
     - EventData 
      PolicyProcessingMode 0 
    END DETAIL SECTION-------------------------------------------------------------------------------
    event 5312
    Event Description(s) = List of applicable Group Policy objects: 
    Event Description(s) = Local Group Policy
    BEGIN DETAIL SECTION------------------------------------------------------------------------------
    - System 
      - Provider 
       [ Name]  Microsoft-Windows-GroupPolicy 
       [ Guid]  {AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9} 
        EventID 5312 
        Version 0 
        Level 4 
        Task 0 
        Opcode 0 
        Keywords 0x4000000000000000 
       - TimeCreated 
       [ SystemTime]  2010-05-15T13:29:33.614000000Z 
        EventRecordID 22709 
       - Correlation 
       [ ActivityID]  {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
       - Execution 
       [ ProcessID]  1280 
       [ ThreadID]  1784 
        Channel Microsoft-Windows-GroupPolicy/Operational 
        Computer GROK 
       - Security 
       [ UserID]  S-1-5-18 
     - EventData 
      DescriptionString Local Group Policy  
      GPOInfoList <GPO ID="Local Group Policy"><Name>Local Group Policy</Name><Version>524296</Version><SOM>Local</SOM><FSPath>C:\Windows\System32\GroupPolicy\Machine</FSPath><Extensions>[{35378EAC-683F-11D2-A89A-00C04FBBCFA2}{D02B1F72-3407-48AE-BA88-E8213C6761F1}][{3610EDA5-77EF-11D2-8DC5-00C04FA31A66}{D02B1F72-3407-48AE-BA88-E8213C6761F1}][{F3CCC681-B74C-4060-9F26-CD84525DCA2A}{0F3F3735-573D-9804-99E4-AB2A69BA5FD4}]</Extensions></GPO> 
    END DETAIL SECTION-------------------------------------------------------------------------------
    event 4016
    Event Description(s) = Starting Microsoft Disk Quota Extension Processing. 
    Event Description(s) = List of applicable Group Policy objects: (Changes were detected.)
    Event Description(s) = Local Group Policy
    BEGIN DETAIL SECTION------------------------------------------------------------------------------
    - System 
      - Provider 
       [ Name]  Microsoft-Windows-GroupPolicy 
       [ Guid]  {AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9} 
        EventID 4016 
        Version 0 
        Level 4 
        Task 0 
        Opcode 1 
        Keywords 0x4000000000000000 
       - TimeCreated 
       [ SystemTime]  2010-05-15T13:29:33.614000000Z 
        EventRecordID 22714 
       - Correlation 
       [ ActivityID]  {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
       - Execution 
       [ ProcessID]  1280 
       [ ThreadID]  1784 
        Channel Microsoft-Windows-GroupPolicy/Operational 
        Computer GROK 
       - Security 
       [ UserID]  S-1-5-18 
     - EventData 
      CSEExtensionId {3610EDA5-77EF-11D2-8DC5-00C04FA31A66} 
      CSEExtensionName Microsoft Disk Quota 
      IsExtensionAsyncProcessing false 
      IsGPOListChanged true 
      GPOListStatusString %%4102 
      DescriptionString Local Group Policy  
      ApplicableGPOList <GPO ID="Local Group Policy"><Name>Local Group Policy</Name></GPO> 
    END DETAIL SECTION-------------------------------------------------------------------------------
    event 5320
    Event Description(s) = Finished checking for non-system extensions.
    BEGIN DETAIL SECTION------------------------------------------------------------------------------
    - System 
      - Provider 
       [ Name]  Microsoft-Windows-GroupPolicy 
       [ Guid]  {AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9} 
        EventID 5320 
        Version 0 
        Level 4 
        Task 0 
        Opcode 0 
        Keywords 0x4000000000000000 
       - TimeCreated 
       [ SystemTime]  2010-05-15T13:29:33.614000000Z 
        EventRecordID 22713 
       - Correlation 
       [ ActivityID]  {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
       - Execution 
       [ ProcessID]  1280 
       [ ThreadID]  1784 
        Channel Microsoft-Windows-GroupPolicy/Operational 
        Computer GROK 
      - Security 
       [ UserID]  S-1-5-18 
    - EventData 
      InfoDescription %%4165 
    END DETAIL SECTION-------------------------------------------------------------------------------
    event 4016
    Event Description(s) = Starting Audit Policy Configuration Extension Processing. 
    Event Description(s) = List of applicable Group Policy objects: (No changes were detected.)
    Event Description(s) = Local Group Policy
    BEGIN DETAIL SECTION------------------------------------------------------------------------------
    - System 
      - Provider 
       [ Name]  Microsoft-Windows-GroupPolicy 
       [ Guid]  {AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9} 
        EventID 4016 
        Version 0 
        Level 4 
        Task 0 
        Opcode 1 
        Keywords 0x4000000000000000 
       - TimeCreated 
       [ SystemTime]  2010-05-15T13:31:21.987200000Z 
        EventRecordID 22718 
       - Correlation 
       [ ActivityID]  {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
       - Execution 
       [ ProcessID]  1280 
       [ ThreadID]  1784 
        Channel Microsoft-Windows-GroupPolicy/Operational 
        Computer GROK 
       - Security 
       [ UserID]  S-1-5-18 
     - EventData 
      CSEExtensionId {F3CCC681-B74C-4060-9F26-CD84525DCA2A} 
      CSEExtensionName Audit Policy Configuration 
      IsExtensionAsyncProcessing true 
      IsGPOListChanged false 
      GPOListStatusString %%4101 
      DescriptionString Local Group Policy  
      ApplicableGPOList <GPO ID="Local Group Policy"><Name>Local Group Policy</Name></GPO> 
    END DETAIL SECTION-------------------------------------------------------------------------------
    event 7016
    Event Description(s) = Completed Microsoft Disk Quota Extension Processing in 108374 milliseconds.
    BEGIN DETAIL SECTION-------------------------------------------------------------------------------------
    - System 
      - Provider 
       [ Name]  Microsoft-Windows-GroupPolicy 
       [ Guid]  {AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9} 
        EventID 7016 
        Version 0 
        Level 2 
        Task 0 
        Opcode 2 
        Keywords 0x4000000000000000 
       - TimeCreated 
       [ SystemTime]  2010-05-15T13:31:21.987200000Z 
        EventRecordID 22717 
       - Correlation 
       [ ActivityID]  {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
       - Execution 
       [ ProcessID]  1280 
       [ ThreadID]  1784 
        Channel Microsoft-Windows-GroupPolicy/Operational 
        Computer GROK 
       - Security 
       [ UserID]  S-1-5-18 
     - EventData 
      CSEElaspedTimeInMilliSeconds 108374 
      ErrorCode 2147942402 
      CSEExtensionName Microsoft Disk Quota 
      CSEExtensionId {3610EDA5-77EF-11D2-8DC5-00C04FA31A66} 
    END DETAIL SECTION-----------------------------------------------------------------------------------------
    event 5016
    Event Description(s) = Completed Microsoft Disk Quota Extension Processing in 108374 milliseconds.
    BEGIN DETAIL SECTION----------------------------------------------------------------------------------------
    - System 
      - Provider 
       [ Name]  Microsoft-Windows-GroupPolicy 
       [ Guid]  {AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9} 
        EventID 5016 
        Version 0 
        Level 4 
        Task 0 
        Opcode 2 
        Keywords 0x4000000000000000 
       - TimeCreated 
       [ SystemTime]  2010-05-15T13:31:22.314800000Z 
        EventRecordID 22720 
       - Correlation 
       [ ActivityID]  {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
       - Execution 
       [ ProcessID]  1280 
       [ ThreadID]  1784 
        Channel Microsoft-Windows-GroupPolicy/Operational 
        Computer GROK 
       - Security 
       [ UserID]  S-1-5-18 
     - EventData 
      CSEElaspedTimeInMilliSeconds 312 
      ErrorCode 2147483658 
      CSEExtensionName Audit Policy Configuration 
      CSEExtensionId {F3CCC681-B74C-4060-9F26-CD84525DCA2A} 
    END DETAIL SECTION-----------------------------------------------------------------------------------------
    Event 8000
    Event Description(s) = Completed computer boot policy processing for WORKGROUP\GROK$ in 108 seconds.
    BEGIN DETAIL SECTION----------------------------------------------------------------------------------------
    - System 
      - Provider 
       [ Name]  Microsoft-Windows-GroupPolicy 
       [ Guid]  {AEA1B4FA-97D1-45F2-A64C-4D69FFFD92C9} 
        EventID 8000 
        Version 1 
        Level 4 
        Task 0 
        Opcode 2 
        Keywords 0x4000000000000000 
       - TimeCreated 
       [ SystemTime]  2010-05-15T13:31:22.330400000Z 
        EventRecordID 22721 
       - Correlation 
       [ ActivityID]  {C87E5BC2-FD21-4794-B678-787AB587D8D5} 
       - Execution 
       [ ProcessID]  1280 
       [ ThreadID]  1784 
        Channel Microsoft-Windows-GroupPolicy/Operational 
        Computer GROK 
       - Security 
       [ UserID]  S-1-5-18 
     - EventData 
      PolicyElaspedTimeInSeconds 108 
      ErrorCode 0 
      PrincipalSamName WORKGROUP\GROK$ 
      IsMachine 1 
      IsConnectivityFailure false 
    END DETAIL SECTION-----------------------------------------------------------------------------------------
    End of results.
    Thanks to all,
    wegrok
    Win7 Ultimate x64, 8 GB ram, AMD Phenom 9950 Quad-proc @2.6Ghz, HD = 1TB ASUS M4N72-E mobo, Video = NVIDIA GeForce 8800 GT w/ Dell 2407 Digital Monitor -------------------------------------------------------------------------------------------------------

    Did you ever have luck tracking this down?  Im getting this error and have no clue where it is coming from.  I have not enabled gp disk quotas, but I do have a network share on a domain member server that has quotas attached to each users folder. 
    I removed the quotas and still get this error when I manually perform a gpupdate. 

  • Grouping by Code

    I have created a Table within SQL Server Report Builder, and the first field is a calculated field with the following code:
    =Code.ChangeWord(Fields!NAME.Value)
    Where the function is
    Public Function ChangeWord(ByVal s As String) As String   Dim strBuilder As New System.Text.StringBuilder(s) If s.Contains("ESI  ") Then      strBuilder.Replace(s,"ESI")      Return strBuilder.ToString()      Else : Return s   End IfEnd Function
    Now, when I execute this, it works beautifully ... except that the Grouping mechanism doesn't group all instances of "ESI" together, like I want it to.
    How do I change this behavior so that it groups all instances of "ESI" together, like it should?

    Hi DonFord81,
    Per my understanding that you have add the custom code to convert the values in the fields which contails "ESI " to "ESI" and then add group on this fields, but the group not work, right?
    I have tested on my local environment and can't reproduce the issue, as Prasad  mentioned that please make sure you are using below expression on the group like below:
    =Code.ChangeWord(Fields!NAME.Value)
    You can not use the custom code but just create an calculated field using the expression like below and then use the Calculated field to create the group as Prasad mentioned:
    =IIF(Left(Fields!Name.Value,4)="ESI ","ESI",Fields!Name.Value)
    Preview:
    If your problem still exists, please try to provide more details information.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Grouping data sent to servlet

    I have an applet servlet pair and I'm having trouble grouping the data coming in from various clients. Let's say there are five clients connected to the servlet on individual threads. The data from clients A, B, and C need to be grouped together, while the data from clients D and E are grouped together. In reality the exact groupings are determined at runtime by the users, but for out example let's say this is how it has worked out. My idea was to create for each group an instance of some class, let's call it simply "clientGroup" on the server that holds and processes the data for each client group. So data coming in from clients A, B or C would be placed into clientGroup1, while any data that came in from D and E would be placed in clientGroup2. To do this it seems that I need to send some sort of metadata with the actual data I'm sending from the applet to the servlet that instructs the servlet "put this data into clientGroup1" or whichever. Reflexivity seems only to be able to create new objects of class clientGroup, not reference and edit existing instances like clientGroup1 or clientGroup2. So what can I pass along with my data to instruct the servlet in which class instance to put the incoming data?

    At least you should be able to identify clients to check to which group they belong. The client should for example be logged in and its group ID should already be known at the server side. Or let the client pass a specific parameter indicating the group ID. If you can do that, then it is just easy. Declare an applicationwide Map somewhere where you use the group ID as key and the group data as value.

  • Retrieveing a value from a set of instances of same entity.

    Hi,
    I want to retrieve a value of a particluar attribute from an entity instance among the group of instances of same entity. How this can be done?
    Consider my rule base as below
    the person ---> the person's income year (the person's income years)
    the person's income year --> the person's income months(the person's incomes in a year)
    "the person" conatins info about the person, "the person's income year" contains information about the year and "the person's income months"
    entity contains entity instances for various months like jan- $200, feb-$300 and so on for a particular year defined in the "person's income
    year" entity.
    Now consider below set of data
    Person 1
    year-2012 - entity instance
           jan -$200 - entity instance
           feb-$300 - entity instance
           mar-$400 - entity instance
    year-2013 - entity instance
           jan- $500 - entity instance
           feb- $700 - entity instance    
           mar-$100 -entity instance
    Now I im proving rules for year 2013 say jan , and I want to get the value of an attribute from the entity of year 2012  jan month.
    How can I get the value from a previous entity instance?

    You can use InstanceValueIf to achieve the result

  • Using Group For Override Not Working

    I have the SQL management packs installed for 2008 and 2012. Each of them have many of the same monitors similar to the Windows Server OS MP set. 
    I have a custom group with instances of the SQL 2008 DB Engine and SQL 2012 DB Engine classes. So basically the group has a few MSSQLSERVER objects in it. I have applied a couple overrides to this group.
    Question 1:
    Would I have to override the same monitor from the SQL 2008 DB Engine class and the SQL 2012 DB Engine class? Or could I just pick one and override for the group I created which has both MSSQLSERVER from SQL 2008 and SQL 2012?
    Question 2:
    Would an override to this group work? It seems like we are still getting alerts that exceed the threshold in the default monitor. I would have just added the two SQL computers to the group but I thought since I was creating an instance group that I'd have
    to add the objects from the class the original monitor is targeted to so I added the MSSQLSERVER to the group.
    What am I doing wrong here?

    What you want to do? If you want to override monitors of parent object with group which populated with child objects then not, you can't do it. If you you want to override as example, CPU Performance monitor for all SQL 2008 Servers then you need to
    create group with computers which contains SQL Instances. It can do Microsoft.SystemCenter.GroupPopulator discovery datasource module:
    http://msdn.microsoft.com/en-us/library/ff472328.aspx
    but as I know "contained" and "contains" parts of module is not available from console, you can do it from Authoring Tools, VSAE or XML editor.
    Vladimir Zelenov | http://systemcenter4all.wordpress.com

  • Adding bigger size Redo log groups In RAC , ASM

    Hi Folks,
    Database version - 10.1.0.4.0
    OS version - AIX 5.3
    RAC node 2 and ASM
    We had 4 redo log groups of lesser size on both nodes.yesterday I added 4 new groups of bigger size using pl/sql developer tool and deleted 2 old redolog groups. But I m not able to delete remaining 2 old groups.
    ORA-01567 dropping log2 would have less than 2 log files for instance 1.
    Our redolog files are on SAN and both node points to same storage. when I fired this query from command prompt
    SELECT v$logfile.member, v$logfile.group#, v$log.status, v$log.bytes
         FROM v$log, v$logfile
    WHERE v$log.group# = v$logfile.group#;
    I got same result for both nodes.
    The problem I suspect is that All the 4 new log groups are added to instance 2 and its 2 old grouips are are also deleted.
    Now my ques is that :
    1. shouild I have added redo log groups separately on both nodes even storage is same for both nodes ?
    2. redologs groups are defined separately for each node ?
    How should I assign 2 new redo log groups to instance 1 ?
    Regards,

    Please check:
    SQL> select instance_number, instance_name, thread# from gv$instance;
    Show Instance with thread ID
    SQL> select group#, thread#, members ,status from v$log;
    Check number groups in each of thread.
    On RAC, you have to add redo log Group each of node (each of thread )
    SQL> select group#, thread#, members ,status from v$log;
    From your environment ,I think you have 2 nodes = 2 thread
    If these're thread 1, 2
    So, add redo group should:
    Example:
    ALTER DATABASE ADD LOGFILE THREAD 1 GROUP 11 ( '+DATA') SIZE 500M;
    ALTER DATABASE ADD LOGFILE THREAD 1 GROUP 12 ( '+DATA') SIZE 500M;
    ALTER DATABASE ADD LOGFILE THREAD 2 GROUP 13 ( '+DATA') SIZE 500M;
    ALTER DATABASE ADD LOGFILE THREAD 2 GROUP 14 ( '+DATA') SIZE 500M;
    You should check each thread has >= 2 groups and that group had "INACTIVE" status before drop:
    SQL> select group#, thread#, members ,status from v$log;
    My Idea, you should have 3 redo log groups for each node(thread)
    Good Luck

  • IPlanet Direcotyr Server 5.0 instance

    I am trying to accomplish a complete command line scripted install of the
    iPlanet Directory Server 5.0.
    So far, I have managed to script the install except for the creation of
    additional iPlanet Directory Servers (other than the config-serv) which is
    normally performed through the console -> Server Group -> Create Instance
    of - > iPlanet Directory Server.
    Has anyone out there had any success in getting this to take place via
    command line?
    Any help would be greatly appreciated.
    Thanks,
    Shauna

    You should have a silent install file (a .inf file). Make a copy of this file and edit it.
    In the [General] section:
    For the UserDirectory* directives, change them to reflect your new directory instance - additional directory servers are always
    considered user directories, even if in actuality they are not.
    In the [slapd] section - change the following directives to the following values:
    SlapdConfigForMC=No
    UseExistingMC=Yes
    UseExistingUG=No
    ServerPort=<your new port number> - must be different if new instance is on same machine
    ServerIdentifier=<your new identifier> - must be different if new instance is on same machine
    Suffix=<your new suffix> - can be the same
    RootDN=<your new root dn> - can be the same
    RootDNPwd=<your new root dn password> - can be the same
    You can remove the [admin], [base], etc. sections
    cd <your server root>/bin/slapd/admin/bin
    ../ds_create -f <your new .inf file>
    You can use this file to create instances on other machines - just be sure to change the FullMachineName and ServerRoot directives
    in the [General] section.
    Shauna Freireich wrote:
    I am trying to accomplish a complete command line scripted install of the
    iPlanet Directory Server 5.0.
    So far, I have managed to script the install except for the creation of
    additional iPlanet Directory Servers (other than the config-serv) which is
    normally performed through the console -> Server Group -> Create Instance
    of - > iPlanet Directory Server.
    Has anyone out there had any success in getting this to take place via
    command line?
    Any help would be greatly appreciated.
    Thanks,
    Shauna

  • New OC4J group - no performance metrics

    I set up a new OC4J group in my app server (ver 10.1.3.1) with 2 OC4J instances. I am not getting any performance metrics for either OC4J instance. On the Performance page, it shows "Unavailable" for everything.
    I am getting performance metrics for my default_group with the home OC4J instance.
    Any ideas about what I need to configure to start collecting performance metrics for my new group OC4J instances?

    Michael,
    Is there a specific person we could request this paper from and is it available yet? I consult for a large company so its kind of hard to get to the sales person from bea that is handling
    our contract.
    Thanks,
    Odysseas
    "Michael Girdley" <[email protected]> wrote:
    >
    >
    Please contact your sales representative, we will have a performance White
    paper available shortly.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "Soumitra Sengupta" <[email protected]> wrote in message
    news:[email protected]..
    Hello:
    I am new to this group. I am looking for some performance metrics for
    Weblogic 5.1 Server running on Solaris 7 and Oracle 8. Any help will be
    appreciated.
    Soumitra

  • SAP GUI 7.10 - Setting up group

    Good morning everyone,
    We are using SAP GUI 7.10 (Patch Level2)
    I am trying to set up a logon group.
    When using SMLG to create the Group I can already see an entry with
    Logon Group = <blank>
    Instance = ServerName_SystemID_InstanceNumber
    Status = <Green\OK>
    Does that mean there is already a logon group set up?
    Is that a default entry in the system?
    Can I have an instance belonging to more than 1 logon group?
    Thank you
    Regards
    Corinne

    The GUI version is irrelevant for this issue, provided that your GUI is capable to speak with your system. And 7.10 should.
    Just RTFM:  http://help.sap.com/saphelp_nw2004s/helpdata/en/c4/3a64b4505211d189550000e829fbbd/content.htm
    Or press F1 in SMLG.
    HTH, Rudi

  • Seggregate Automated User provisioning using Access Policy-Diff Groups/Org

    Hello there,
    By default, the users that are created in OIM - via GTC/via self registration/via Administrator - they all get assigned to "All Users" group. Can we assign these users to a different User Defined group for e.g. "trialgroup", by default and Unassign the "All Users" group. If yes, how can we do that?
    This question is related to another question of mine:
    I want to avoid all the users that are being created in OIM system - to be all together provisioned to a single IT Resource in my case OID directly via Access policy which can be applied on individual group. I want to keep the system extensible for future purposes. And the only way to seggregate direct resource provisioning via access policy is by means of different "groups". So the solution that I could think of was to assign all the users that are being created currently (via GTC and via Bulk Load into OIM) to a separate group and assign an access policy to the group so that in future if any other resource comes into picture then the system can be extended by creating more groups and designing individual separate access policies for the same.
    Does this makes sense?
    Please provide your inputs! Any hints/suggestions/ideas are welcomed.
    TIA,
    - oidm.

    I am actually not very sure, what you want to achieve form the content of that post. If you mean that you would not want every user in OIM to be provisioned to OID automatically through access policy, then I am assuming that in that case you will aplly the access policy to the ALL_USERS group.
    Well I may be missing the flow of your question, but here is what you can do based on my understanding:
    1) Just forget ALL_USERS group. We can no nothing about it. Any User created will be a part of this group and you cannot remove a user from this group.
    2) In place of this what you can do is create another group, for instance trialgroup and make all users a member of this group as well. This would be simple to do. See next step. Use addMemberUser() API of addMemberUser interface.
    3) Create an Entity adapter with a javatask added, which takes an input of UserID, and assigns that user to this group (trialgroup) in OIM using above API. Attach this adapter to the post-insert trigger of the "Users" data object manager. (It also have another ootb Entity adapter which adds all the users to ALL_USERS group).
    4) Attach your access policy to this group.
    5) Now also you are free to extend your system by creating more groups and access policies. It shouldn't be a problem.
    Thanks
    Sunny

  • Any restriction for single SAP instance

    Hello All,
    One of the vendor advised  to run CI only for a VCM application of estimated size of 50000 SAPs, Is it feasible or there is restriction ? And is there any uppler limit for the instance parameters ?
    Please advice if anyone have experionce in this.
    Thanks & Regards,
    Vinod

    Hello,
    50.000 SAPs for a Central Instance is possible, however this seems a very big system.
    Normally you do not include the Central Instance in your logon groups, therefore instance problems should not be sized to big.
    What you should have in your landscape is a lot of application servers (in logon group also) to deal with the load the end users will cause.
    On your central instance I also assume that your database is running, otherwise 50.000 SAPs is not possible.
    CI + DB = 50.000 is possible because you will also have a lot of shadow processes in your DB for every workprocess in the different application servers.
    Wim

  • SkinnableContainer returns Group when typed

    I have a SkinnableContainer that is added as a wrapper when a visualelement is added to a group: (heres the code i use to add it
    public override function addElement(element:IVisualElement):IVisualElement
         var r:ResizerComponent = new ResizerComponent(); //This is the SkinnableContainer
         r.addEventListener(MouseEvent.MOUSE_DOWN,onMouseDown);
         r.x = element.x;
         r.y = element.y;
         element.x = element.y = 0;
         r.addElement(element);
         var newElement:IVisualElement = super.addElement(r);
         return newElement;
         function onMouseDown(event:MouseEvent):void
              var g:Group = event.target as Group;
              if (selectable)
                   if (!r.selected)
                        r.select(); //If i reference r here, it is the correct component
    It "should" add the element to the resizer, and the resizer as the original element to the parent control. It works to a point, however if i try to call a function that should return the ResizerComponent, it comes out typed as a Group. (for instance, the function onMouseDown returns the event.target as a Group, which should be ResizerComponent).
    As is, if i reference the variable r, i can call the correct functions; as an example above, i called r.select();
    Am I wrong in how I believe this works? is there another way I can try to do this?
    I am attempting to make an illustrator-like selection box appear around any object in the parent container (complete with arrows and extent border)... i can get the border to appear, but preforming other events becomes a problem if i can't type things correctly)
    A screenshot of what shows up before and after pressing the object is shown below
    -Click->

    HI,
    Whenever we print the viewer does an auto postback, I believe due to this some of the values are getting missed. Moreover we are referring to the viewer and reportdocument object, it seems. So can you try this simple code in an application to see if it helps:
    ReportDocument rdoc = new ReportDocument();
    rdoc.Load("C:\TASKECrystalReports\Intraday.rpt");
    rdoc.SetDatabaseLogon("uid","pwd");
    rdoc.SetParameterValues("parameter name","value");
    CrystalReportViewer.ReportSource = rdoc;
    Helps?
    Thanks.

Maybe you are looking for

  • Problème d'activation de la mise à jour lightroom 6

    bonsoir, hier j'ai acheté la mise à jour de lightroom 6 via le site d'adobe, j'ai eu mon numéro de série, mais lorsque je veux le saisir, celui n'est pas reconnu... que faire, j'ai téléchargé deux fois, tout désinstallé, y compris lightroom 5, réinst

  • Contract price in Shopping cart

    Hello Experts, When user creates SC and choose source of supply using contract, that time i want to read contract price from backend and populate that price into SC price field. Is it possible? I know that while creating PO it will take care. But i w

  • Acrobat 8 Professional error on Mac

    On opening Acrobat 8 professional on Mac OS 10.5.8 I get the error that it cannot be launched until I open another pro app like Photoshop. After doing this there is still the same error. Is there a fix? B

  • Need help with AI and AE desperate to learn

    Hi, I am a newbie at this, but I didnt think it would be this hard, I need to get all the layers to import from AI to AE, this seems simple even to me so I dont understand why I am here about to kick my computer over this,I've done some research and

  • Can she use Final Cut Express 3.5?

    My daughter, a journalism grad student, asked me to get Final Cut PRO for use in a class. I have new unopened Final Cut Express, v3.5 in hand. (Purchased a few years ago and never used it). Can she use this product? What will we lose with FCE?