Add group to AD user gives errors

Hi,
I have AD 9.1.1.5 connector installed in our environment and adding AD group to the user gives the below error:
ERROR,28 Sep 2011 04:31:59,280,[OIMCP.ADCS],================= Start Stack Trace =======================
ERROR,28 Sep 2011 04:31:59,280,[OIMCP.ADCS],com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController : hashTableEnvForDirContext
ERROR,28 Sep 2011 04:31:59,280,[OIMCP.ADCS],
ERROR,28 Sep 2011 04:31:59,280,[OIMCP.ADCS],Description : null
ERROR,28 Sep 2011 04:31:59,280,[OIMCP.ADCS],java.lang.NullPointerException
at java.util.Hashtable.put(Hashtable.java:396)
at com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController.hashTableEnvForDirContext(Unknown Source)
at com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController.connectToAvailableAD(Unknown Source)
at com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController.getAttributeValues(Unknown Source)
at com.thortech.xl.integration.ActiveDirectory.tcUtilADTasks.addUserToGroup(Unknown Source)
Thanks!

Run OIM under debugger, set a breakpoint at tcADUtilLDAPController.hashTableEnvForDirContext(). Check that the map in the hmConstantsLookUp instance field has the following attributes set:
"SCONTEXTFACTORY"
"ATT_BINARY"
"LDAP_OBJECT_GUID"
"SSL"
check also that the following instance fields are not null:
sPrincipal
sPassword

Similar Messages

  • Not able to add groups to the user ODSEE via OIM 11g R2

    Hi,
    I have created some groups in ODSEE and ran the recon job to sync these groups in OIM 11g R2.
    Groups are populated in OIM 11g R2 and while raising the request for ODSEE Application Instance I can see these groups.
    Now following are the issues I am facing :
    1. ODSEE groups are not getting displayed in Catalog ( I have ran the Entittlement-List job also)
    2. When I request for a group while creating the request, the group is not getting assigned to the user in ODSEE, wherein user is getting created in ODSEE successfully.
    Please help.
    Thanks

    Please let me know what could be the reason of not adding the groups to the user in ODSEE.
    I was able to add the groups successfully to user by assigning the groups while raising the request in OIM 11g R1.
    But the same is not working in OIM 11g R2, if I check the OIM logs it is calling the function ADDUSERTOGROUP but the groups are not getting assigned to user.
    Thanks

  • Add groups to a user

    Hello,
    we want do add groups (groupwise memberships) to a user. We have groupsie 8. But the commit don't add the group. The user, who wants to write to the nds have admin rights. What shell i do?
    Kind regards
    monika

    we use visual Basic 6

  • Cannot add groups to new users

    1, I add users in WebLogic 11g. However, in the Parent Groups page, I cannot move any groups to the right dropdown list.
    2, I am going to add new users for Oracle SOA Suite worklist. Does anyone know how to do it?

    you need to update and add user in jazn-data.xml file and restart bpel server then you will be able to look up the users using jazn tool
    To assign the credentials navigate to $Oracle_Home\integration\ orabpel\system\appserver\oc4j\j2ee and use the command
    java -jar jazn.jar -adduser jazn.com soauser1 admin123
    RealmLoginModule username: admin
    RealmLoginModule password:
    This will create a user 'soauser1' with password 'admin123'
    update the jazn-data.xml :
    <user>
    <name>soauser1</name>
    <credentials>!admin123</credentials>
    </user>
    This is one way also you can create users using EM console
    Regards,
    Deepa

  • Add Group of LDAP Users

    I want to add just a group of users to our Teaming 2.0 server. I have a group in eDir that I created so that I don't have to synch a Context. How do I add this group? I've specified the context that the group is in, but when I try applying, nothing happens. Am I incorrect that you can add a group of users to teaming using LDAP?
    jv

    johnnyv5,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Copy paste of a package to another user gives error ..

    Hi,
    I have created a package having procedures in a user .Now when i copy and paste that package in another server user,that is giving error . When i separatelly run the code where error is shown, then is ran successfully.
    All the errors says that "table or view does not exist" ,even the table exists ,since they are saying about system tables.
    The error code is ORA-00942
    What is this problem ?
    Thanks.
    Edited by: user12222356 on Jun 14, 2010 10:04 AM

    ok,this is the exact package code.
    i am using Oracle 10g
    CREATE OR REPLACE PACKAGE BODY GKP020 AS
    PROCEDURE TABLE_NAME (tb_cursor OUT md_cursor)
    AS BEGIN
    OPEN tb_cursor FOR SELECT DISTINCT UPPER(TABLE_NAME) FROM DBA_CONSTRAINTS WHERE owner='GIUSR'
                    AND CONSTRAINT_TYPE = 'P' AND table_name IN (SELECT OBJECT_NAME
                   FROM dba_objects WHERE owner = 'GIUSR' AND object_type = 'TABLE'
                   AND object_name NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG') AND object_name LIKE ('%YKPI_%')) MINUS SELECT DISTINCT TABLE_NAME
                   FROM DBA_CONSTRAINTS WHERE owner='GIUSR' AND CONSTRAINT_TYPE = 'R'
                   AND table_name IN (SELECT OBJECT_NAME FROM dba_objects WHERE owner = 'GIUSR'
                   AND object_type = 'TABLE' AND object_name NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG')) UNION
                   (SELECT OBJECT_NAME FROM dba_objects WHERE owner = 'GIUSR' AND object_type = 'TABLE'
                   AND object_name NOT LIKE ('%_BKP')  AND object_name NOT LIKE ('%_LOG') AND object_name LIKE ('%YKPI_%')MINUS (SELECT DISTINCT TABLE_NAME FROM DBA_CONSTRAINTS
                   WHERE owner='GIUSR' AND CONSTRAINT_TYPE = 'P' AND table_name IN (SELECT OBJECT_NAME
                   FROM dba_objects WHERE owner = 'GIUSR' AND object_type = 'TABLE' AND object_name
                   NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG')) MINUS SELECT DISTINCT TABLE_NAME FROM DBA_CONSTRAINTS WHERE owner='GIUSR'
                   AND CONSTRAINT_TYPE = 'R' AND table_name IN  (SELECT OBJECT_NAME FROM dba_objects
                   WHERE owner = 'GIUSR' AND object_type = 'TABLE' AND object_name NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG'))))
                   MINUS ( SELECT DISTINCT origtab FROM (SELECT a.owner ORIGOWNER, a.constraint_name ORIGCONS,
                   a.constraint_type ORIGCONSTYP,  a.table_name ORIGTAB, b.column_name ORIGCOL,
                   b.position ORIGCOLPOS, a.r_owner FKOWNER, a.r_constraint_name FKCONS, c.Table_name FKTABS,
                   c.column_name FKCOL, c.position FKCOLPOS FROM dba_constraints a, dba_cons_columns b,
                   dba_cons_columns c WHERE a.owner='GIUSR' AND a.table_name IN (SELECT OBJECT_NAME
                   FROM dba_objects WHERE owner = 'GIUSR' AND object_type = 'TABLE' AND object_name
                   NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG')) AND a.constraint_type='R' AND a.owner=b.owner AND a.table_name=b.table_name
                   AND a.CONSTRAINT_NAME = b.CONSTRAINT_NAME AND a.owner=c.owner
                   AND a.r_constraint_name = c.constraint_name AND b.position = c.position) aa
                   LEFT OUTER JOIN (SELECT DISTINCT TABLE_NAME FROM DBA_CONSTRAINTS    WHERE owner='GIUSR'
                   AND CONSTRAINT_TYPE = 'P' AND table_name IN (SELECT OBJECT_NAME FROM dba_objects
                   WHERE owner = 'GIUSR' AND object_type = 'TABLE' AND object_name NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG'))
                   MINUS SELECT DISTINCT TABLE_NAME FROM DBA_CONSTRAINTS WHERE owner='GIUSR'
                   AND CONSTRAINT_TYPE = 'R' AND table_name IN (SELECT OBJECT_NAME FROM dba_objects
                   WHERE owner = 'GIUSR' AND object_type = 'TABLE' AND object_name NOT LIKE ('%_BKP') AND object_name NOT LIKE ('%_LOG'))) bb
                   ON aa.FKTABS=bb.TABLE_NAME WHERE bb.TABLE_NAME IS NULL);
    END TABLE_NAME;
    PROCEDURE COLUMN_NAME (tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT column_name FROM dba_tab_columns
                   WHERE owner='GIUSR' AND table_name= tab_name
                   AND column_name NOT LIKE ('%_MANDT') AND column_name NOT LIKE ('%_CRT_ID')
                   AND column_name NOT LIKE ('%_CRT_TS') AND column_name NOT LIKE ('%_UPD_ID')
                   AND column_name NOT LIKE ('%_UPD_TS') AND column_name NOT LIKE ('%_FL_ACTIVE')
                   AND column_name NOT LIKE ('%_DEFN') AND column_name NOT LIKE ('%_PIC');
    END COLUMN_NAME;
    PROCEDURE PRMKY_COL (tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT COLUMN_NAME FROM dba_cons_columns a, dba_constraints b
                       WHERE a.table_name = tab_name AND a.OWNER = 'GIUSR' AND b.constraint_type = 'P'
                          AND a.table_name = b.table_name AND a.owner = b.owner
                       AND a.CONSTRAINT_NAME = b.CONSTRAINT_name MINUS
                       SELECT COLUMN_NAME FROM dba_cons_columns a, dba_constraints b
                       WHERE a.table_name = tab_name AND a.OWNER = 'GIUSR' AND b.constraint_type = 'R'
                       AND a.table_name = b.table_name AND a.owner = b.owner
                       AND a.CONSTRAINT_NAME = b.CONSTRAINT_name;
    END PRMKY_COL;
    PROCEDURE ALL_PRMKY_COL (tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT DISTINCT COLUMN_NAME FROM dba_cons_columns a, dba_constraints b
                       WHERE a.table_name = tab_name AND a.OWNER = 'GIUSR' AND b.constraint_type = 'P'
                       AND a.table_name = b.table_name AND a.owner = b.owner
                       AND a.CONSTRAINT_NAME = b.CONSTRAINT_name;
    END ALL_PRMKY_COL;
    PROCEDURE DDL_COL (tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT COLUMN_NAME FROM dba_cons_columns a, dba_constraints b
                     WHERE a.table_name = tab_name AND a.OWNER = 'GIUSR' AND b.constraint_type = 'R'
                     AND a.table_name = b.table_name AND a.owner = b.owner AND a.CONSTRAINT_NAME = b.CONSTRAINT_name;
    END DDL_COL;
    PROCEDURE HEADER_NAME (col_name IN VARCHAR2, tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT INITCAP(a.COLUMN_NAME), INITCAP(COMMENTS)
                FROM dba_tab_columns a LEFT OUTER JOIN DBA_COL_COMMENTS c
                ON a.OWNER = c.owner
                AND a.table_name = c.table_name
                AND a.column_name = c.column_name
                WHERE a.table_name =  tab_name
                AND a.OWNER = 'GIUSR'
                AND a.column_name IN (col_name);
    END HEADER_NAME;
    PROCEDURE DDL_REF_TBL (col_name IN VARCHAR2, tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT DISTINCT c.COLUMN_NAME, c.TABLE_NAME  FROM dba_cons_columns c,
                       (SELECT a.table_name, a.OWNER, b.constraint_type, a.constraint_name,
                       b.R_constraint_name, a.COLUMN_NAME FROM dba_cons_columns a, dba_constraints b
                       WHERE a.table_name = tab_name AND a.OWNER = 'GIUSR' AND b.constraint_type = 'R'
                       AND a.table_name = b.table_name AND a.OWNER = b.OWNER
                       AND a.constraint_name = b.constraint_name
                       AND a.COLUMN_NAME = col_name ) d
                       WHERE c.owner=d.owner AND c.constraint_name=d.R_Constraint_Name
                       AND SUBSTR(c.column_name, 4, LENGTH(c.column_name)-3) = SUBSTR(d.column_name, 4, LENGTH(d.column_name)-3);
    END DDL_REF_TBL;
    PROCEDURE DDL_REF_CLMN (tab_name IN VARCHAR2, tb_cursor OUT md_cursor)
    AS
    BEGIN
    OPEN tb_cursor FOR SELECT DISTINCT COLUMN_NAME, TABLE_NAME FROM DBA_COL_COMMENTS
                   WHERE OWNER = 'GIUSR' AND Comments='Description' AND table_name =tab_name;
    END DDL_REF_CLMN;
    END GKP020;The error list is:
    >
    LINE/COL ERROR
    4/20 PL/SQL: SQL Statement ignored
    6/21 PL/SQL: ORA-00942: table or view does not exist
    38/20 PL/SQL: SQL Statement ignored
    38/44 PL/SQL: ORA-00942: table or view does not exist
    49/20 PL/SQL: SQL Statement ignored
    49/64 PL/SQL: ORA-00942: table or view does not exist
    61/20 PL/SQL: SQL Statement ignored
    61/73 PL/SQL: ORA-00942: table or view does not exist
    70/20 PL/SQL: SQL Statement ignored
    70/64 PL/SQL: ORA-00942: table or view does not exist
    77/20 PL/SQL: SQL Statement ignored
    LINE/COL ERROR
    78/52 PL/SQL: ORA-00942: table or view does not exist
    90/20 PL/SQL: SQL Statement ignored
    92/80 PL/SQL: ORA-00942: table or view does not exist
    103/20 PL/SQL: SQL Statement ignored
    103/65 PL/SQL: ORA-00942: table or view does not exist
    >
    Edited by: user12222356 on Jun 14, 2010 11:45 AM

  • Can't add groups or users to the wiki

    I've found a few threads on this, but none of them have presented a solution.
    Setup:
    XServe with Leopard 10.5.4 on it.
    Advanced mode.
    Problem:
    Under the Server Admin panel, if I add a user or group to have Wiki and Blog permissions, if I click save, the user and or groups do not stay in the list. And on the site they do not have wiki or blog options. The group/user vanished.
    If I try to enable wiki and blog options for a group under the "basic" tab in Workgroup Manager, all options are disabled (i.e. - "Enable the following services for this group on: (None)" is disabled.
    The DNS is set appropriately.
    The machine is (correctly) set for Open Directory - Stand Alone server.
    Here is an interesting addition to the problem.
    1.) Through the System Admin panel, if I add a user to the wiki permission list, and click save
    2.) Open a broswer over the System Admin panel (without navigating to anywhere else in System Admin) and log in to the local wiki
    3.) The "groups" button is enabled, but the "users" button is not.
    4.) Click on "groups"
    5.) Now the "users" button is also enabled.
    6.) Go to "Users"
    7.) Select "create a blog" and enter my username and password.
    8.) Give my blog a name.
    9.) Now the blog shows up under the Users list.
    10.) Open my blog in the users list.
    11.) Create a new blog entry.
    12.) Go back to System Admin panel, navigate anywhere else, and then return to the wiki settings for the appropriate site, the user and or groups are gone once again.
    13.) Go back to the web broswers and pull up the local wiki.
    14.) "groups" will be enabled. "users" will be disabled.
    15.) Click "groups"
    16.) "Users" is now enabled.
    17.) Click on "users"
    18 a.) Often a 404 page appears, or a wiki page that is pure text (no html).
    18 b.) Refresh the page, and now the normal list of user blogs appears.
    19.) Click on the blog I created previously.
    20.) Viola! It is completely usable and viewable, but the User will NEVER appear as having permissions under the Web options in Server Admin.

    @ Pope7
    Hi
    The machine is (correctly) set for Open Directory - Stand Alone server
    If this is truly what is says then whatever you are trying to achieve won't happen. The Server has to be an OD Master and users and groups need to exist in the LDAP node. Wiki, Blog and iCal will not be available as services until you you do this.
    The DNS is set appropriately
    The foundation for a successful Open Directory Master offering LDAP and SSO is DNS. Don't confuse an external DNS service with an internal one that the server will require. You don't have to configure DNS on the server itself just as long as it is configured on another server on the same network will do.
    @ simonblackledge
    Hi
    Using DM to make a group. Goto the tab for services and everything ..wiki etc.. is ghosted out
    What's DM? If you are not seeing an option to enable calendaring in the Users Advanced Tab or similar options for Wiki, Blog etc in the Groups Tab then either you are in the Local node in which case these services won't work or your Server is not configured as an OD Master. Same advice applies to you really.
    The admin manual although poor does clearly state what's required:
    http://images.apple.com/server/macosx/docs/iCalService_Admin_v10.5_2ndEd.pdf
    You should download this one as well:
    http://images.apple.com/server/macosx/docs/OpenDirectory_Admin_v10.5_2ndEd.pdf
    Finally there is a requirement for clients to be bound to the Server for this to be truly effective. Use Directory Utility found in /Applications/Utilites to achieve this.
    If I'm telling you something you already know then please accept my apologies.
    Tony

  • OOTB workflow gives error when user rejects in the document in publishing a major version.

    Hi All,
    I am using OOTB workflow with little customization  with following configuration
    1. Allow content approval enabled
    2. Configure a workflow with following general settings true
    3. Start workflow on publish of Major version only is enabled
    4. workflow has following configuration enabled.
    Now, when user start publishing of major version and Starts the workflow. workflow starts without any problem.
    But as and when the user rejects the document it is rejected with Reject status with "Approval Status" as well as workflow status which is expected.(This is correct )
    But when i look at the workflow history i can see at last line there is an Error with
    An error has occurred in In [Workflow Name].
    Now when user check out and check in item again and try to publish with Major version again. it gives errors that the previous version is still running.
    I have trace a lot and also test with original OOTB workflow itself. it is behaving the same.
    As per my findings there is problem in "Completion condition of this task process" the end task process is not being executed correctly.
    I tried to end the task process with End the task process action but it is still not working.
    I need some help in this issue as users are facing problems in case of rejection. I hope some one has the solution for the same.
    Two things i have noticed are
    1. My MS office 2010 professional plus is expired as i was using trial version
    2. I have made stop inheriting tasks permission and remove all default groups as i have settings in workflow "Only allow task reception and process owner to read and edit workflow task"
    3. Earlier i had also installed "Sharepoint 2010 April 2012 updates". i had also observed that (installing Sharepoint 2010 April 2012 updates) before that if user has selected "Automatically rejects the document if any participant rejected". it ends
    with "rejected" status. At present it remains in inprogress and not stops with rejected status.
    Can any one give me a hint what should be the problem ? Is it a problem with latest Sharepoint 2010 April 2012 updates ?
    Thanks,
    S. M. MANIYAR

    I have done following testing.
    1. The server in which i have not installed sharepoint 2010 April 2012 updates the above scenario is working fine without any problem
    2. I have also observed following logs of error in server where April 2012 updates is installed.
    8/28/2012 03:51:41.33  w3wp.exe (0x0F08)                        0x0A00 SharePoint Foundation        
     Workflow Infrastructure        88xr Unexpected WinWF Internal Error, terminating workflow Id# 8bf7fef1-c92e-4b22-a16f-480425d3adc6 
    08/28/2012 03:51:41.33  w3wp.exe (0x0F08)                        0x0A00 SharePoint Foundation        
     Workflow Infrastructure        98d4 Unexpected System.InvalidOperationException:
    CompositeActivity cannot transition to 'Closed' status when there are active child context still exist for child activity.     at System.Workflow.ComponentModel.Activity.MarkClosed()     at System.Workflow.ComponentModel.ActivityExecutionContext.CloseActivity()    
    at Microsoft.Office.Workflow.Actions.OfficeTask.FinalClose(Object sender, EventArgs eventArgs)     at System.Workflow.ComponentModel.ActivityExecutorDelegateInfo`1.ActivityExecutorDelegateOperation.Run(IWorkflowCoreRuntime workflowCoreRuntime)    
    at System.Workflow.Runtime.Scheduler.Run() 
    Following are last two lines of workflow history.
    S. M. MANIYAR

  • Fail Safe adding database to group gives error "FS-10006: Unable to open.."

    Environment:
    Fail Safe 3.4.2
    Oracle 11.2.0.1 64bit
    Windows 2008 Server 64bit
    Two nodes in an active/passive cluster using windows clustering and oracle fail safe.
    Problem:
    We have created the windows cluster, installed fail safe on both clustered nodes, installed the database software, verified the cluster, created a group and added a virtual address to the group. We also managed to verify the stand alone database instance without any issues. However, when we try to add the database to the group we get the following errors:
    Versions:  client = 3.4.1    server = 3.4.2    OS = 
    Operation:   Adding resource "THORD" to group "EO_THORD_GRP" 
    Starting Time:   Jul 26, 2010   16:23:04
    Elapsed Time:   0 minutes, 2 seconds
    1   16:23:04  Starting clusterwide operation
    2   16:23:05  FS-10370: Adding the resource THORD to group EO_THORD_GRP
    3   16:23:05  FS-10371: ClusterNode1 : Performing initialization processing
    4   16:23:05  FS-10371: ClusterNode2 : Performing initialization processing
    5   16:23:05  FS-10372: ClusterNode1 : Gathering resource owner information
    6   16:23:05  FS-10372: ClusterNode2 : Gathering resource owner information
    7   16:23:05  FS-10373: ClusterNode1 : Determining owner node of resource THORD
    8   16:23:05  FS-10374: ClusterNode1 : Gathering cluster information needed to perform the specified operation
    9   16:23:05  FS-10374: ClusterNode2 : Gathering cluster information needed to perform the specified operation
    10  16:23:05  FS-10375: ClusterNode1 : Analyzing cluster information needed to perform the specified operation
    11  16:23:05   >>> FS-10652: ClusterNode1 has Oracle Database version 11.2.0.1 installed in OraDb11g_home1
    12  16:23:05   >>> FS-10652: ClusterNode2 has Oracle Database version 11.2.0.1 installed in OraDb11g_home1
    13  16:23:05  FS-10376: ClusterNode1 : Starting configuration of resource THORD
    14  16:23:05  FS-10378: ClusterNode1 : Preparing for configuration of resource THORD
    15  16:23:05  FS-10380: ClusterNode1 : Configuring virtual server information for resource THORD
    16  16:23:05    ** ERROR : 0x138F: The cluster resource could not be found.
    17  16:23:06    ** ERROR : FS-10006: Unable to open the resource
    18  16:23:06    ** ERROR : FS-10012: Failed to bring the cluster resource  online. Check the Windows event log for messages
    19  16:23:06    ** ERROR : FS-10784: The Oracle Database resource provider failed to configure the virtual server for resource THORD
    20  16:23:06    ** ERROR : FS-10890: Oracle Services for MSCS failed during the add operation
    21  16:23:06    ** ERROR : FS-10497: Starting clusterwide rollback of the operation
    22  16:23:06  FS-10488: ClusterNode1 : Starting rollback of operation
    23  16:23:06  FS-10489: ClusterNode1 : Completed rollback of operation
    24  16:23:06    ** ERROR : FS-10495: Clusterwide rollback of the operation has been completed
    25  16:23:06  Please check your Windows Application log using the Event Viewer for any additional errors
    26  16:23:06  The clusterwide operation failed !
    FS-10006: Unable to open the resourceAll the cluster resources seem to be online. We're all out of ideas here, can someone please shead some light on this or have any ideas how we can go on about this.
    Your help is highly appreciated.
    Thanks

    I am getting into the issue (step-6) when I run standalone resource verify after successful step-5 and need your advice.
    I will give you information about the infrastructure -
    NODE1-2K8-ORADBND1
    NODE2-2K8-ORADBND2
    Cluster IP-
    Virtual IP on NODE1 and NODE2 host file -
    OS - Windows 2008 R2 64 bit
    Oracle Database - 11gR2
    Oracle FailSafe - 3.4.1.6
    Oracle SID- ORA11
    (ORA11 is up and running on NODE1 active node while running add to group option from - Groups/Standalone Resources to verify the instance and it gets error)
    Here is the error log -
    Versions: client = 3.3.3 ; server = 3.4.1 ; OS =
    Operation: Adding resource "ORA11" to group "Available Storage"
    Starting Time: Sep 02, 2010 12:50:06
    Elapsed Time: 0 minutes, 1 seconds
    1 12:50:06 Starting clusterwide operation
    2 12:50:06 FS-10370: Adding the resource ORA11 to group Available Storage
    3 12:50:06 FS-10371: 2K8-ORADBND1 : Performing initialization processing
    4 12:50:06 FS-10371: 2K8-ORADBND2 : Performing initialization processing
    5 12:50:07 FS-10372: 2K8-ORADBND1 : Gathering resource owner information
    6 12:50:07 FS-10372: 2K8-ORADBND2 : Gathering resource owner information
    7 12:50:07 FS-10373: 2K8-ORADBND1 : Determining owner node of resource ORA11
    8 12:50:07 FS-10374: 2K8-ORADBND1 : Gathering cluster information needed to perform the specified operation
    9 12:50:07 ** ERROR : FS-10791: The Oracle Database resource provider failed while gathering cluster information for resource ORA11
    10 12:50:07 ** ERROR : FS-10890: Oracle Services for MSCS failed during the add operation
    11 12:50:07 Please check your Windows Application log using the Event Viewer for any additional errors
    12 12:50:07 The clusterwide operation failed !
    Thanks for your help!

  • HT204053 I have an iPhone 4S and when I try to add an iCloud account is gives me an error "Cannot Sign In, The maximum number of free accounts have been activated on this iPhone." Is there any way to deactivate an account?

    I have an iPhone 4S and when I try to add an iCloud account is gives me an error "Cannot Sign In, The maximum number of free accounts have been activated on this iPhone." Is there any way to deactivate an account? I have one for myself, one for my family and one for my work. I had all three on my iphone and then I deleted my work. I wanted to get my own person @me.com account. It wouldn't let me create it from my iphone, so I created it from my Macbook Pro. I am trying to add it to my iphone, but it keeps giving me that error. If there is a way I can deactivate my work one so I can use my @me.com personal account?

    Welcome to the Apple Community.
    Unfortunately once all the 3 iCloud accounts have been created on your mobile device, you cannot create any more regardless of what you do. You will need to re-use one of the accounts that you have already created or create your new account on another device or computer.
    You should however be able to add existing accounts to your device, are you sure you aren't trying to create on rather than simply use an existing one.

  • Can we set the Option "Show add-in user interface errors" with VBA?

    Does anyone know if the advanced Option "Show add-in user interface errors" can be set with VBA in Project Pro 2013?
    \Spiro Theopoulos, Montreal, QC (Canada)

    Spiro,
    Sorry but as far as I know that option is not available through VBA.
    John

  • How to add column to report from the same table? Gives error now

    Steps to reproduce:
    Build a report on a table with easy report, select all columns
    Add column to the table
    Edit report and add column (one has to click Show Related Tables Only: No to view the same table!)
    Report will give error as it will be build as
    SELECT ... FROM table1, table1

    AH HAAA!!!!
    And I was afraid to convert from the "SQL (Structured Query)" to "SQL". Probably because I blew up my other reports...
    Thanks!

  • Unknown User Type Error using Add-AzureAccount

    Using the following code in an Azure automation runbook from the Portal (attempting to start a VM):
    workflow VMStart
    $Cred = Get-AutomationPSCredential –Name automationuser
    Add-AzureAccount -Credential $Cred
    Select-AzureSubscription -SubscriptionName "MySubscription"
    Start-AzureVM -ServiceName "MyServiceName" -Name "MyVirtualMachine" -force
    I get the following errors in the Output Pane:
    1/15/2015 4:53:09 PM, Error: Add-AzureAccount : unknown_user_type: Unknown User Type
    At VMStart:7 char:7
    +
    + CategoryInfo : CloseError: (:) [Add-AzureAccount], AadAuthenticationFailedException
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.Profile.AddAzureAccount
    1/15/2015 4:53:10 PM, Error: Select-AzureSubscription : The subscription named 'MySubscription' cannot be found. Use Set-AzureSubscription to
    initialize the subscription data.
    Parameter name: name
    At VMStart:9 char:9
    +
    + CategoryInfo : CloseError: (:) [Select-AzureSubscription], ArgumentException
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.Profile.SelectAzureSubscriptionCommand
    1/15/2015 4:53:10 PM, Error: Start-AzureVM : A parameter cannot be found that matches parameter name 'force'.
    At VMStart:11 char:11
    +
    + CategoryInfo : InvalidArgument: (:) [Start-AzureVM], ParameterBindingException
    + FullyQualifiedErrorId :
    NamedParameterNotFound,Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.StartAzureVMCommand
    I can't find any information on the "Unknown User Type" error.
    Any ideas?
    Thanks,
    Scott

    Hi Joe -
    I attempted to install the Azure Powershell using the instructions here:
    http://azure.microsoft.com/en-us/documentation/articles/install-configure-powershell/
    Upon completion I was unable to find Azure Powershell from Start/Programs:
    I then attempted to re-install Azure Powershell.  Initially, it came up with the error: "There was an error loading custom feed: 'http://www.microsoft.com/web/webpi/2.0/ToolsProductList.xml'. Error: 'ProductId PHP not found.'."
    I clicked OK and WPI indicated that the Azure Powershell would be installed.  I clicked INSTALL and WPI showed Azure Powershell in the list, but the Total File Download size was 0MB.  I clicked I ACCEPT and it immediately blinked back that Azure
    Powershell was installed.
    When I clicked FINISH, however, the following was displayed:
    Here is the the log file from the latest attempt:
    DownloadManager Information: 0 : Loading product xml from: https://go.microsoft.com/?linkid=9842185
    DownloadManager Information: 0 : https://go.microsoft.com/?linkid=9842185 responded with 302
    DownloadManager Information: 0 : Response headers:
    HTTP/1.1 302 Found
    Cache-Control: private
    Content-Length: 175
    Content-Type: text/html; charset=utf-8
    Expires: Fri, 16 Jan 2015 17:18:12 GMT
    Location: https://www.microsoft.com/web/webpi/5.0/webproductlist.xml
    Server: Microsoft-IIS/8.5
    X-AspNet-Version: 2.0.50727
    X-Powered-By: ASP.NET
    Date: Fri, 16 Jan 2015 17:19:11 GMT
    DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/5.0/webproductlist.xml responded with 304
    DownloadManager Information: 0 : Response headers:
    HTTP/1.1 304 Not Modified
    Content-Type: text/xml
    Last-Modified: Thu, 15 Jan 2015 19:17:09 GMT
    ETag: "246ac1dbf730d01:0"
    Cache-Control: max-age=280
    Date: Fri, 16 Jan 2015 17:19:12 GMT
    Connection: keep-alive
    X-CCC: US
    X-CID: 2
    DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\1343597488.xml.temp
    DownloadManager Information: 0 : Filtering by current OS
    DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/5.0/webapplicationlist.xml
    DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/5.0/webapplicationlist.xml responded with 304
    DownloadManager Information: 0 : Response headers:
    HTTP/1.1 304 Not Modified
    Content-Type: text/xml
    Last-Modified: Fri, 17 Oct 2014 12:44:38 GMT
    ETag: "97c9cd1c8eacf1:0"
    Cache-Control: max-age=296
    Date: Fri, 16 Jan 2015 17:19:14 GMT
    Connection: keep-alive
    X-CCC: US
    X-CID: 2
    DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\-97141593.xml.temp
    DownloadManager Information: 0 : Filtering by current OS
    DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/5.0/webapplicationlist.xml' after preprocessing, location on disk: 'C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-97141593.xml'
    DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/5.0/mediaproductlist.xml
    DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/5.0/mediaproductlist.xml responded with 304
    DownloadManager Information: 0 : Response headers:
    HTTP/1.1 304 Not Modified
    Content-Type: text/xml
    Last-Modified: Thu, 08 May 2014 18:42:31 GMT
    ETag: "26a51545ed6acf1:0"
    Cache-Control: max-age=372
    Date: Fri, 16 Jan 2015 17:19:15 GMT
    Connection: keep-alive
    X-CCC: US
    X-CID: 2
    DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\-230948881.xml.temp
    DownloadManager Information: 0 : Filtering by current OS
    DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/5.0/mediaproductlist.xml' after preprocessing, location on disk: 'C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-230948881.xml'
    DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/5.0/ToolsProductList.xml
    DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/5.0/ToolsProductList.xml responded with 304
    DownloadManager Information: 0 : Response headers:
    HTTP/1.1 304 Not Modified
    Content-Type: text/xml
    Last-Modified: Tue, 21 Oct 2014 20:26:36 GMT
    ETag: "247eed4f6dedcf1:0"
    Cache-Control: max-age=278
    Date: Fri, 16 Jan 2015 17:19:15 GMT
    Connection: keep-alive
    X-CCC: US
    X-CID: 2
    DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\-1135381691.xml.temp
    DownloadManager Information: 0 : Filtering by current OS
    DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/5.0/ToolsProductList.xml' after preprocessing, location on disk: 'C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1135381691.xml'
    DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/5.0/enterpriseproductlist.xml
    DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/5.0/enterpriseproductlist.xml responded with 304
    DownloadManager Information: 0 : Response headers:
    HTTP/1.1 304 Not Modified
    Content-Type: text/xml
    Last-Modified: Thu, 08 May 2014 18:42:32 GMT
    ETag: "8285645ed6acf1:0"
    Cache-Control: max-age=60
    Date: Fri, 16 Jan 2015 17:19:15 GMT
    Connection: keep-alive
    X-CCC: US
    X-CID: 2
    DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\-1877981721.xml.temp
    DownloadManager Information: 0 : Filtering by current OS
    DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/5.0/enterpriseproductlist.xml' after preprocessing, location on disk: 'C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1877981721.xml'
    DownloadManager Information: 0 : Sucessfully loaded the feed 'https://go.microsoft.com/?linkid=9842185' after preprocessing, location on disk: 'C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\preprocessor\1343597488.xml'
    DownloadManager Information: 0 : Loading product xml from: http://www.microsoft.com/web/webpi/2.0/ToolsProductList.xml
    DownloadManager Information: 0 : Content-Encoding header: 'gzip'
    DownloadManager Information: 0 : Number of bytes downloaded over the internet: '14692'
    DownloadManager Information: 0 : Number of bytes after possible decompression: '104283'
    DownloadManager Information: 0 : Failed to load the feed 'http://www.microsoft.com/web/webpi/2.0/ToolsProductList.xml' after preprocessing, location on disk: 'C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\preprocessor\883561549.xml.err'
    DownloadManager Error: 0 : Error loading downloaded product file: 'System.InvalidOperationException: ProductId PHP not found.
    at Microsoft.Web.PlatformInstaller.DependencyProduct.ResolveProductIds(ProductManager pm)
    at Microsoft.Web.PlatformInstaller.DependencyLogicalAnd.ResolveProductIds(ProductManager pm)
    at Microsoft.Web.PlatformInstaller.Product.ResolveIDs()
    at Microsoft.Web.PlatformInstaller.ProductManager.LoadFromXmlInternal(LineInfoDocument xmlDoc, Boolean loadEnclosures)
    at Microsoft.Web.PlatformInstaller.ProductManager.LoadFromXml(LineInfoDocument document, Boolean loadEnclosures)
    at Microsoft.Web.PlatformInstaller.ProductManager.LoadFromXml(String xmlFile, Boolean loadEnclosures)
    at Microsoft.Web.PlatformInstaller.ProductManager.Load(Uri productFileUrl, Boolean filterByArchitectureAndOS, Boolean loadEnclosures, Boolean useCachedVersion, String cacheDirectory, Architecture architecture, Int32 osType)'
    DownloadManager Information: 0 : Content-Encoding header: 'gzip'
    DownloadManager Information: 0 : Number of bytes downloaded over the internet: '14692'
    DownloadManager Information: 0 : Number of bytes after possible decompression: '104283'
    DownloadManager Information: 0 : Failed to load the feed 'http://www.microsoft.com/web/webpi/2.0/ToolsProductList.xml' after preprocessing, location on disk: 'C:\Users\Scott\AppData\Local\Microsoft\Web Platform Installer\preprocessor\883561549.xml.err'
    DownloadManager Error: 0 : Error loading feed http://www.microsoft.com/web/webpi/2.0/ToolsProductList.xml: System.InvalidOperationException: ProductId PHP not found.
    at Microsoft.Web.PlatformInstaller.DependencyProduct.ResolveProductIds(ProductManager pm)
    at Microsoft.Web.PlatformInstaller.DependencyLogicalAnd.ResolveProductIds(ProductManager pm)
    at Microsoft.Web.PlatformInstaller.Product.ResolveIDs()
    at Microsoft.Web.PlatformInstaller.ProductManager.LoadFromXmlInternal(LineInfoDocument xmlDoc, Boolean loadEnclosures)
    at Microsoft.Web.PlatformInstaller.ProductManager.LoadFromXml(LineInfoDocument document, Boolean loadEnclosures)
    at Microsoft.Web.PlatformInstaller.ProductManager.LoadFromXml(String xmlFile, Boolean loadEnclosures)
    at Microsoft.Web.PlatformInstaller.ProductManager.Load(Uri productFileUrl, Boolean filterByArchitectureAndOS, Boolean loadEnclosures, Boolean useCachedVersion, String cacheDirectory, Architecture architecture, Int32 osType)
    at Microsoft.Web.PlatformInstaller.ProductManager.LoadExternalFile(Uri uri)
    at Microsoft.Web.PlatformInstaller.ProductServiceImpl.LoadProducts(String primaryFeed, String[] feeds)
    DownloadManager Information: 0 : Getting ratings file from http://go.microsoft.com/?linkid=9752395
    DownloadManager Information: 0 : Contextual entry products: WindowsAzurePowerShell
    DownloadManager Information: 0 : Adding product Microsoft Azure PowerShell with Microsoft Azure SDK (WindowsAzurePowershell) to cart
    DownloadManager Information: 0 : Contextual navigation to product 'WindowsAzurePowershell'
    DownloadManager Information: 0 : http://go.microsoft.com/?linkid=9752395 responded with 302
    DownloadManager Information: 0 : Response headers:
    HTTP/1.1 302 Found
    Cache-Control: private
    Content-Length: 203
    Content-Type: text/html; charset=utf-8
    Expires: Fri, 16 Jan 2015 17:18:17 GMT
    Location: http://www.microsoft.com/web/handlers/WebPI.ashx?command=getatomfeedwithavgratingquery
    Server: Microsoft-IIS/8.5
    X-AspNet-Version: 2.0.50727
    X-Powered-By: ASP.NET
    Date: Fri, 16 Jan 2015 17:19:16 GMT
    DownloadManager Information: 0 : Content-Encoding header: 'gzip'
    DownloadManager Information: 0 : Number of bytes downloaded over the internet: '22570'
    DownloadManager Information: 0 : Number of bytes after possible decompression: '75392'
    DownloadManager Warning: 0 : Error getting last-modified header, error code: 12150
    DownloadManager Warning: 0 : HttpQueryInfoWithRetry for HTTP_QUERY_LAST_MODIFIED failed.
    DownloadManager Information: 0 : Ratings file loaded successfully
    DownloadManager Information: 0 : Dependent product WindowsAzurePowershellOnly does not apply for current OS / configuration. Not adding
    DownloadManager Information: 0 : Dependent product WindowsManagementFramework_86_64 does not apply for current OS / configuration. Not adding
    DownloadManager Information: 0 : Dependent product WindowsAzurePowershellOnly does not apply for current OS / configuration. Not adding
    DownloadManager Information: 0 : Dependent product WindowsManagementFramework_86_64 does not apply for current OS / configuration. Not adding
    DownloadManager Information: 0 : Dependent product WindowsAzurePowershellOnly does not apply for current OS / configuration. Not adding
    DownloadManager Information: 0 : Dependent product WindowsManagementFramework_86_64 does not apply for current OS / configuration. Not adding
    DownloadManager Information: 0 : Adding product 'WindowsAzurePowershell'
    DownloadManager Information: 0 : Setting current install to 1
    DownloadManager Information: 0 : Starting install sequence
    DownloadManager Information: 0 : Starting EXE command for product 'Microsoft Azure PowerShell with Microsoft Azure SDK'. Commandline is: 'C:\Windows\system32\cmd.exe /C echo noop'. Process Id: 5308
    DownloadManager Information: 0 : Install exit code for product 'Microsoft Azure PowerShell with Microsoft Azure SDK' is '0'
    DownloadManager Information: 0 : Install return code for product 'Microsoft Azure PowerShell with Microsoft Azure SDK' is Success
    DownloadManager Information: 0 : Product Microsoft Azure PowerShell with Microsoft Azure SDK done install completed
    DownloadManager Information: 0 : Increasing current install to 2
    DownloadManager Information: 0 : Product: WindowsAzurePowershell, Install Status: InstallCompleted-Success, Install Time: 00:00:00.0560000
    DownloadManager Information: 0 : Clearing cart
    I did attempt to open the regular Powershell and use the command Get-AzureVM, but the following error was returned:
    The term 'Get-AzureVM' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
    spelling of the name, or if a path was included, verify that the path is correct and try again.
    At line:1 char:12
    + Get-AzureVM <<<<
    + CategoryInfo : ObjectNotFound: (Get-AzureVM:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
    Any advice appreciated...
    Thanks,
    Scott

  • Copying a function group gives error

    Dear All,
    I am copying a function a group JV05. I have copied evrything i.e all the includes, TOP etc. But when i activate the group it gives me error. What could be the problem? I have tried to activate the includes & TOP individually. Still it gives error for some variables. Please help me out.
    Thanks in advance!
    Regards,
    Prasad

    hi ,
    **Go to se80..**
    **1. Select function group**
    **2. Enter JV05 as name  "-----> click on spectacles button.**
    **3. Right click on JV05**
    **4. Select copy  "--------> give a Zfunction group name**
    **5. "Copy all the function modules in this function group with zfunctionmodules.**
    **6. Save & Activate.**
    Regards,

  • How to add administrator group to weblogic user

    Hi All,
    How to add Administrator Group to weblogic user if weblogic user is accidently removed from Administrator group.
    Weblogic version is 10.0.1.0.
    Thank you in Advance!!!
    Cheers,
    Ankur

    http://docs.oracle.com/cd/E21764_01/apirefs.1111/e13952/taskhelp/security/ManageUsersAndGroups.html

Maybe you are looking for

  • White space after flowed layout/expandable fields?

    Hi, I have a few pages on a form with a flowed layout where the text fields expand.The problem I am having is when the text field expans and continues on the following page,its leazing an entire white space right after it.Is there a way to do this so

  • Crystal report viewer Toolbar

    I am developing reports on Crystal Reports XI R2, VS.NET 2005 , SQL Server 2000, C#. When i run the report it generates the report fine but after a minute when I click on the toolbar either for print or export or drilldown or search or zoom or group

  • Formula in query for Characteristics?

    Dear all, regarding customer service we report on a multicube. The query contains the keyfigures and among other characteristics the "Original confirmend delivery date" ZGUEDATU and the "Actual goods issue date" 0ACT_GI_DTE. How is it possible to bui

  • Unwanted error message

    how do I get the message not to appear by day Invalid (Frm-50004) in forms 6i

  • 'Batch Change' question - Need to adjust month only...

    Hi, I've got a question about using Batch Change. A good portion of my photos have the right Day and Time, however they are one month off. Is there any way that I can change only the month using Batch Change, or am I stuck? Perhaps there is another w