Query on Active Sync

Hi,
I have a query on Active Sync.
I am making some changes in a couple of attributes. Is there a way or a variable through which i can get only the changed values.
activeSync.chnages gives me the entire value of the changed attributes.
for eg:
Original value of member of: Group1,Group2
New value:Group1,Group2,Group3
i am modifying the memberOf attribute. The user alreday has Group1 and Group2 under the member of attribute and i want to add Group3.Is there a way in which i can get the value of only Group3?
Thanks,
pdeep

Hi,
Please do not confuse what is displayed on the screen and when actually happens on the resource. The screen is showing that prior to the change the user will be a member of: Group1,Group2. After the change the user will be a member of:Group1,Group2,Group3.
The actual mechanism to implement the change on the resource will depend upon the implementation of the resource adaptor.

Similar Messages

  • Automatic Active Sync failed to Start at appropriate time

    Hellos,
    Its holiday season here. We had a FF Active Sync process that failed to start up.
    Ops noted an overheating CPU at 2am. Server was brought down.. App server stopped, Database stopped. Fan fixed and Server rebooted.. Database started Ok, App server started Ok.. according to AS Log idM started up ok... but the 'automatic' Active Sync process refused to start.
    What could prevent it?!
    I have seen various people's opinions.. e.g.
    "Hi,
    There can be lot of reasons , for not starting activesync.
    if you are using activesync between SIM and database ,
    then lets start from activesync wizard ,
    1)check the i/p activesync form(version should be correct)
    2)check the startup type
    3) if you are using query based activesync
    check the first and last predicate fields and you need to ensure that the logic you have used in i/p activesync form will generate some processing once you start active sync otherwise you will not see active sync in executing state.
    you can check weather activesync has performed operation or not in IAPI in the debug page under configurator
    if your CPU utilisation on server is very high activesync will not start
    these are general things
    if you can give some more specific details abt your application and problem i can help you out.
    Warm Regards,
    Gajanan"
    This process had been left unstarted for some time. Noone checked.. why should they.. its automatic (obviously IdM isnt an R.E.M. fan)
    Surely an automatic start type should (re)start after a reboot for hardware reasons!
    Is the only thing we can we put in a Solaris shell script to test that these ****ing active sync process have been started and are running after a reboot/restart of App.server is a date test of the log file? i.e. if log file has not been touched in x days raise an alarm... seems something that is better built into IdM than a script.
    How has this problem been faced and met by others out there? I am sure we are not the only people who have had to shutdown and restart IdM.

    Indeed it does. The problem is that a log is just that.. a log of what has happened. In our case the 'automatic' AS process failed to start automatically.
    We are forced to use the log and reverse apriori reasoning to detect whether the AS process actually started.
    I hope you agree this situation isnt really satisfactory, is it?

  • Active Sync - What attributes to set in UserMap

    I am have written an active sync adapter for MySQL Table. I am not sure what attributes to add in the user map object that is passed in the list of updates.
    I get the following error:
    The result of submitting the message - com.waveset.exception.FormValidation: Validation errors detected in form.
    My Code is as follows:
    private List getUpdateRows(Map lastProcessedRow) throws WavesetException {
    final String method = "getUpdateRows";
    TRACE.entry3(method);
    Connection conn = getConnection();
    ResultSet rslt = null;
    Statement stmt = null;
    List listOfUpdatedUsers = new ArrayList();
    String query = "select id, password, first_name, last_name, email, department, users_event.event " +
    " from users, users_event " +
    "where users_event.updated = 0 and users.id = users_event.user_id";
    try {
    stmt = conn.createStatement();
    rslt = stmt.executeQuery(query);
    if(null == rslt) {
    Message msg = new Message("NULL resultset returned on query execution");
    throw new WavesetException(msg);
    while(rslt.next()) {
    HashMap userMap = new HashMap();
    userMap.put("name", rslt.getString(1));
    userMap.put("password", rslt.getString(2));
    userMap.put(AA_FIRST_NAME, rslt.getString(3));
    userMap.put(AA_LAST_NAME, rslt.getString(4));
    userMap.put("email", rslt.getString(5));
    userMap.put(AA_DEPARTMENT, rslt.getString(6));
    if("delete".equals(rslt.getString(7))) {
    userMap.put(ATTR_IS_DELETED, "true");
    listOfUpdatedUsers.add(userMap);
    } catch (Exception e) {
    Message msg = new Message("Unable to get list of updated rows " + e.getMessage());
    throw new WavesetException(msg);
    } finally {
    TRACE.exit3(method);
    return listOfUpdatedUsers;
    * Take a list of Maps that are rows of the audit data and turn them
    * into IAPI calls.
    * @param list - a List of Map objects from getUpdateRows.
    protected int processUpdates(List list)
    throws WavesetException, IAPIException {
    final String METHOD = "processUpdates";
    TRACE.entry2( METHOD );
    int numProcessed = 0;
    if (list != null) {
    final int listSize = list.size();
    util.logString(IAPI.TRACELEVEL_INFO,
    "processUpdates: " +
    listSize +
    " elements.\n" );
    int currentRowCount = 0;
    Iterator it = list.iterator();
    while (it.hasNext() && !_util.isStopRequested()) {
    Map userMap = (Map)it.next();
    ++currentRowCount;
    // Announce our intentions with the current row, and
    // which row is being processed.
    logUpdate(IAPI.TRACE_LEVEL_INFO,userMap,null);
    util.logString( IAPI.TRACELEVEL_INFO,
    "processing update " +
    currentRowCount +
    " of " +
    listSize +
    ".\n");
    // Build the event
    Map options = new HashMap();
    // Check for any required attributes, which are either
    // not in the schema map, or are the names on the left hand side
    // of the schema map.
    String identity = (String)userMap.get("name");
    util.logString( IAPI.TRACELEVEL_INFO, "processing update Identity = " + identity + ".\n");
    if (identity == null){
    String message = "Missing required attribute name. " +
    "This is a configuration problem.";
    // If an error message can be safely ignored, namely it
    // is not a problem communicating with the resource, use
    // the resources's "CONTINUE_ON_ERROR" setting to determine
    // whether to skip the entry, or throw an exception.
    if ( isFeatureEnabled(Features.CONTINUE_ON_ERROR) ){
    util.logString( IAPI.TRACELEVEL_WARNING,
    message );
    continue;
    } else {
    throw new WavesetException(message);
    // If deletes aren't detected by a resource, the following
    // block should be removed.
    boolean wasDelete = false;
    if ( userMap.get(ATTR_IS_DELETED) != null ){
    // If the event was detected as a delete, flag it as such
    // in the options.
    options.put(IAPI.OPTION_DELETE_EVENT_DETECTED, Boolean.TRUE);
    wasDelete = true;
    util.logString( IAPI.TRACELEVEL_INFO, "About to process userMap \n");
    // IAPIFactory will use the resource configuration, options,
    // and userMap provided to create the event.
    IAPI event = IAPIFactory.getIAPI(options, userMap, this);
    util.logString( IAPI.TRACELEVEL_INFO, "Retrieved event object after processing userMap \n");
    // If deletes aren't detected by a resource, the following
    // block should be removed.
    if ( (event == null) && wasDelete ){
    // identity is used here as an example, replace with
    // whatever identifying attribute or attributes are
    // appropriate for the resource.
    util.logString(IAPI.TRACELEVEL_INFO,
    "Received delete for user " +
    identity +
    " not in IdM. Ignoring.\n");
    if (event != null) {
    ++numProcessed;
    event.setLogger(_util.getLogger());
    WavesetResult result = event.submit(); //This method returns an error message
    util.logString( IAPI.TRACELEVEL_INFO, " The result of submitting the message - " + result.getErrorMessage());
    // Log the result of submitting the current event.
    logUpdate(IAPI.TRACE_LEVEL_INFO,userMap,result);
    } // else nothing to do with the current row.
    TRACE.exit2(METHOD, numProcessed);
    return numProcessed;
    Please let me know the list of attributes that need to be set in the userMap objects.
    Thanks

    It looks like that the information than goe through ActiveSync form. Examples of such forms are at /homeDir/idm-staging/samples. More information can be found in documenatation Sun™ Identity Manager 8.0
    Workflows, Forms, and Views.
    Martin

  • Io exception: Connection timed out during Active Sync

    I received this connection exception during an Active Sync Process.
    The exception caused the process to halt for 9 minutes - it then picked again and continued processing accounts.
    We are running IdM v5.0 SP6, Tomcat Application Server, and an Oracle 9 Repository.
    Any ideas?

    Hi,
    It seems the query is taking too long and eventually the connection to the database is timing out.
    I also believe that you are on the supported database configurations for WLS 10.0 MP1 :-
    Link:[http://edocs.bea.com/platform/suppconfigs/configs100/100_over/supported_db.html]
    You will also have to look in the weblogic server log for relevant errors like socket exceptions.
    Regards.

  • Finding IOS Versions of Active Sync Devices

    Hi
    We have our iPhones synchronized with Active Sync (Exchange). If I make a query Exchange will give a list with the devices. For example: Apple-iPhone3C1/801.400
    We have a lot of different iPhone's 3g, 4g in our environment and I'd like to have a list, which shows the appropriate IOS Version. In the case of Apple-iPhone3C1/801.400, it would be IOS: 4.0.2
    So, the question is: Where can I get such a list? Or does anybody know all of the codes/ios vesions?
    Thanks a lot for advice and futher information.
    BE

    Hi Kavindua,
    To retrieve the list of devices in your organization that have active Microsoft Exchange ActiveSync partnerships, Please check the cmdlet "Get-ActiveSyncDevice".
    Refer to:
    Export a list of all ActiveSync accounts and devices to .CSV ,export a list of all enabled users with mailbox sizes
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang

  • How to shorten active sync process

    Hello, I am trying to setup IDM to use Database Table active sync to read SQL table then update couple IDM user's attributes. I used "used wizard generated input form" setting. Once it runs, IDM connects all the resources and fetches all the information of res account that each user has. We have over 6000 user. The active sync took over 10 hours to finish. Where and how can I let active sync not to connect other resource?

    I identify that the query allowing take a while.
    Periodicly, MGP send from 2 to 8 process which execute the query that takes all the processor. Even there are nothing to update.
    How to acelerate it? or how to avoid it?.
    UPDATE mobileadmin.cmp$wtgpi_10055 m
    SET dmltype$$ = 'D',
    seqno$$ = NULL,
    dtype$$ = NULL
    WHERE clid$$cs = 'XNC04615'
    AND nvl(dtype$$, 'N') <> 'D'
    AND (seqno$$ IS NOT NULL
    OR nvl(dmltype$$, 'N') <> 'D')
    AND NOT EXISTS (SELECT 'A'
    FROM (SELECT t1.*
    FROM shmk.designs_data t1, shmk.userdatakey t2
    WHERE t2.user_id = 'XNC04615'
    AND t1.ref = t2.ref) s
    WHERE s.ref = m.ref) ;

  • Setting advanced query on Activity Stream

    Hi
    I'm using Publisher and Activity Stream taskflows together in a page and I need to differenciate when an uploaded document comes from publisher or not.
    By setting an advanced query at Activity Stream Content Presenter, for example: AE.ACTIVITY_TYPE NOT IN (\'create-document\') hide all the new documents uploaded by users on Content Server regardless of the location. That expression doesn't differentiate between documents uploaded to a personal folder or a public one.
    I need to hide on the activity stream all the new documents uploaded under /PersonalSpaces folder and subfolders in Content Server. So, documents uploaded using Publisher would appear because are stored under /WebCenterSpaces/my_folder_space/
    Documentation is quite poor.
    Please help.
    Regards

    So,
    For Case 1 : When Process B is getting executed in a separate Thread and Transaction , then when process A is getting rolled back why B is also getting rolled back as it's in different thread althgether.
    3) For Case2 : Please clear my following understanding :
    When we set the value to 'sync' for process B, then B will act like a synchronous process(ideally it Async), and will get committed after the it's execution. Because of this, even if A is getting rolled back, B will not get rolledback because it is already committed. For case 1:
    By calling process B, an invocation message is being insert into the dehydration store. That causes process B to be created as a new thread/transaction.
    When you perform rollback->the new transaction that was made following the new thread, is being rollback among the rest of your process transaction(the rollback causes the message not to be save and for that you can't see new instance).
    For case 2:
    By calling process B, only a new transaction is being creating, and invocation message is not being insert into the dehydration store.
    So actualy, you have 1 thread and 2 transactions, and you are telling your process(thread) to rollback only the current transaction and not the new one (process A not owns the new transaction).
    2) You mentioned if we are calling Process B with No Rollback. How to call B with No Rollback? Is there any property like that? It was just an example. Forget about it.
    I hope it answered you questions...
    Arik

  • Active Sync not working

    I am having an issue with active sync not working. I am looking for updates from my resource every 5 minutes for changes. My enviornment is such:
    IdM Version 5
    App server: Weblogic 8.1.6
    IdM is looking at AD (2003) for changes.
    My log files look like such:
    2007-02-06T13:20:07.794-0500: Started, paused until Tue Feb 06 13:25:00 EST 2007
    2007-02-06T13:25:00.049-0500: Pause completed
    2007-02-06T13:25:00.095-0500: Polling
    2007-02-06T13:25:00.111-0500: Looking for updates with filter: (objectCategory=person)(uSNChanged>=71766297)
    2007-02-06T13:25:01.064-0500: Looking for deletes with filter: (uSNChanged>=33117487)
    2007-02-06T13:25:07.767-0500: Poll complete.
    2007-02-06T13:25:07.767-0500: SARunner: loop 263
    2007-02-06T13:25:07.814-0500: Started, paused until Tue Feb 06 13:30:00 EST 2007
    2007-02-06T13:30:00.053-0500: Pause completed
    2007-02-06T13:30:00.068-0500: Polling
    2007-02-06T13:30:00.084-0500: Looking for updates with filter: (objectCategory=person)(uSNChanged>=71766297)
    2007-02-06T13:30:01.240-0500: Looking for deletes with filter: (uSNChanged>=33117487)
    2007-02-06T13:30:08.021-0500: Poll complete.
    2007-02-06T13:30:08.021-0500: SARunner: loop 264
    2007-02-06T13:30:08.084-0500: Started, paused until Tue Feb 06 13:35:00 EST 2007
    2007-02-06T13:35:00.057-0500: Pause completed
    2007-02-06T13:35:00.088-0500: Polling
    2007-02-06T13:35:00.104-0500: Looking for updates with filter: (objectCategory=person)(uSNChanged>=71766297)
    2007-02-06T13:35:01.229-0500: Looking for deletes with filter: (uSNChanged>=33117487)
    2007-02-06T13:35:08.166-0500: Poll complete.
    2007-02-06T13:35:08.166-0500: SARunner: loop 265
    2007-02-06T13:35:08.197-0500: Started, paused until Tue Feb 06 13:40:00 EST 2007
    2007-02-06T13:40:00.030-0500: Pause completed
    2007-02-06T13:40:00.030-0500: Polling
    2007-02-06T13:40:00.045-0500: Looking for updates with filter: (objectCategory=person)(uSNChanged>=71766297)
    2007-02-06T13:40:01.014-0500: Looking for deletes with filter: (uSNChanged>=33117487)
    2007-02-06T13:40:07.795-0500: Poll complete.
    When I run these search filters I get results from my AD. When IdM runs the search they are coming back blank. Any ideas?
    Thanks,
    Chris

    If you have changed environments... or for some other reason, your USN number on the AD resource could be lower than the number passed in the query.
    Manually edit a user in AD, and then check the USN number of the object. See if it is lower then the query is passing. If so, you can manually edit the IAPI_ResourceName configuration object and alter the USN number passed in the query.

  • Zenprise software and exchange active sync is no longer working with my work email

    Has anyone resolved this issue yet?  I use Zenprise to allow my email to communicate with my work server.  The account and set up is correctly and I reenrolled to ping the server. I discussed this with my company's support center.  However, my company no longer see's my phone trying to communicate with the server. I also use active sync to sync up the email.  Both are not working and did work fine before the ICS upgrade.  I did everything verizon told me to do.  Such as clear out cache, etc. 
    If my phone can not be fixed, I should receive a free upgrade to apple (since android is not working).  I should not have to pay for a new phone.  Verizon, please fix the software or send me a new apple phone.

    Hello all - I have good and bad news.   The good news is after I deleted both my unique Office365-based exchange accounts and then re-added one, I was asked to allow some policy that allows my company to wipe the device, etc., etc.   That allowed the first one to work, and the second one set up without issue too.   I'm most pleased to have my device working, but my 'fix' isn't too revolutionary so probably not very helpful to you.   I did try the Touchdown app for a bit the other day, but was disappointed that it could only do one account at a time and didn't have the comprehensive cross-account calendar, from what I could tell.  Also, my apologies for possibly polluting the thread but I do not use Zenprise; my phone (although company-issued) is a base Android.  Good luck with your issues and let's hope any other OS upgrade is far, far into the future.

  • Exchange active sync cannot connect to server after migration mailbox user from exchange 2007 to exchange 2013 coexistence

    Hello, everyone, my name is rafl
    I have a problem with exchange 2013 active sync.
    I have installed exchange 2013 coexistence with legacy exchange 2007, I have to migrate user mailboxes: [email protected] from exchange 2007 to exchange 2013.
    but any problem with active sync connection on the mobile device after moving mailbox user. I reconfigure the exchange ActiveSync external connection domain (latest.domain.com) on mobile device replacing legacy exchange ActiveSync external connection domain
    (legacy.domain.com)
    the process of moving mailboxes successfully without error.
    Access OWA for exchange 2007 and exchange 2013 is running normally
    access mail from Outlook running normally
    Certificate request has been installed and has no problem with it
    The OWA virtual directory is configured for internal and external connections and different from the legacy exchange
    The autodiscover virtual directory is configured for internal and external connections and different from the legacy exchange
    ActiveSync virtual directory is configured for internal and external connections and different from the legacy exchange
    user mailboxes are still on exchange 2007 is not problematic.
    only problem with Exchange Active Sync on mobile devices, where I set up an email with android, iphone, windows phone. the error message: cannot connect to the server.
    but, if I create a new user and create user mailboxes directly in exchange server 2013, ActiveSync can run without error on mobile device, access through OWA, MsOutlook, Outlook Anywhere also run normally.
    only the results of user migration from exchange 2007 to exchange 2013 which is troubled with exchange ActiveSync connection.
    any ideas for this problem, and what should I check on the exchange server ..?

    i have run the activesync test connectivity and get some error :
    Testing TCP port 443 on host domain.co.id to ensure it's listening and open.
    The specified port is either blocked, not listening, or not producing the expected response.
    A network error occurred while communicating with the remote host.
    Elapsed Time: 3091 ms.
    Testing TCP port 443 on host autodiscover.domain.co.id to ensure it's listening and open.
    The specified port is either blocked, not listening, or not producing the expected response.
    A network error occurred while communicating with the remote host.
    Elapsed Time: 21072 ms.
    Testing TCP port 80 on host autodiscover.domain.co.id to ensure it's listening and open.
    The specified port is either blocked, not listening, or not producing the expected response.
    A network error occurred while communicating with the remote host.
    Elapsed Time: 21049 ms.
    I have allowed access to port 443 (https) and 80 (http) on the firewall and re-run testconnectivity, but still with the same results. if I enable active sync for users who created directly in Exch 2013 there is no problem with the ActiveSync, just a problem
    for users who moved from Exch 2007 to Exch 2013. @Android, iPhone, and Blackberry the error message "cannot connect to the server"

  • How do I use Active Sync to view SharePoint Lists (Contacts and Calendars) on a Mobile Phone?

    We are attempting to use SharePoint 2010 in combination with Exchange 2010 to implement shared calendars and contact lists throughout our organization.  We are able to connect the lists to Outlook 2010, but have been unsuccessful in viewing
    the calendars and contact lists from our mobile phones.  How do we use Active Sync to view SharePoint Lists (Contacts and Calendars) on a Mobile Phone?
    In trying to answer this question, we have come across a few different possibilities, all of them falling just short of a long term solution for us.  After doing research, we found that Active Sync will only show the default folders of the account.  To
    solve this, we downloaded an Add-In for Outlook (CodeTwo FolderSync) to synchronize folders and synchronized our SharePoint list with a new Contact list in the default folder.  The issue we came across with this method is that the Add-In we are using
    is not capable of automatic synchronization.  There is a button and it must be clicked after every update is made, which is not ideal for our solution.  We then went to the company (CodeTwo) and found server side software (Exchange Sync) that they
    offer which will automatically synchronize the folders.  After installing that on the Exchange Server, we now are running into the issue of not being able to locate the SharePoint lists on the Exchange Server.
    Does anyone happen to know how we can get to the SharePoint lists from the Exchange Server?  Has anyone else been able to use shared contacts lists and calendars from SharePoint on their mobile phones using Active Sync?  If so, are we in the right
    direction with what we have found so far?
    Thanks,
    Brad

    You cannot use ActiveSync for that, but there are SharePoint clients for the iPhone. Windows Mobile 7 natively supports SharePoint with SharePoint Workspace Mobile, part of Microsoft Office Mobile. Android and BlackBerry might also have some apps.
    Use Microsoft SharePoint Workspace Mobile
    http://www.microsoft.com/windowsphone/en-us/howto/wp7/office/use-office-sharepoint-workspace-mobile.aspx
    iPhone SharePoint Apps Shootout
    http://www.codeproject.com/KB/iPhone/iPhoneSharePointApps.aspx 
    Comparing SharePoint iPhone Apps
    http://blog.praecipio.com/2010/11/02/comparing-sharepoint-iphone-apps/
    MCTS: Messaging | MCSE: S+M

  • Report on active sync actions (like starting and stopping the sync)

    Is there a way to report on who stopped or started an active sync? I'm guessing it has to be stored somewhere, but I can't find it.
    Thanks!

    Hi Smit,
    I believe you are talking about FMS AWS instance and you may be using a centos 4.0.2 instance AMI or lower?
    Well ... earlier,  options for stopping a centos AWS image was not available, but recently they are there in place, so I suppose if you use a new centos 4.5.1 AMI then probably you can start stop the aws instance on yuor will. Give ut a shot and let me know.
    Regards,
    Shiraz Anwar
    I again cross-checked and found that you were right, start and stop is not supported there .... an alternative method is to take a snapshots of the runinng instnace and terminate that instance after that, later you can use your snapshot to attach to the EBS volume to run your system again. You may need to use the Elastic IP address, because you wont like your users to update each time you terminate the old instance, and create new instance from snapshot. I have never used it in this way, but this is one of the approach.

  • "This message has not been downloaded from the server" - Multiple devices all using Exchange Active Sync

    We are having this issue across multiple IOS devices ranging from IOS version 5.x up to the latest 6.1.2. Many (not all) emails sent to the devices are unreadable and simply state: "This message has not been downloaded from the server". Microsoft believes this to be some sort of bug with the IOS devices in the way they are handling the SSL encryption.
    Facts:
    - Devices are connected to an Exchange 2010 SP1 Rollup 6 via Active Sync (No POP3, IMAP or SMTP)
    - issue occurs on multiple IOS devices within the organization ranging from IOS 5.x up to the latest 6.1.2
    - Issue occurs on both external cellular data and internal wireless networks
    - Not all emails sent to the devices result in the error, but issue does tend to occur more frequently from certain senders/domains
    - Using the same user account on an android phone does not result in an issue (even when receiving the exactly same email that has been sent to the IOS devices)
    - Closing mail app / rebooting device does not resolve the issue
    - Doesn't appear to matter what the mesage format is (can be html, plaintext, etc)
    - Spent nearly 7 hours with Microsoft going through the Exchange server configuration and looking for possible causes. None have been found and all testing indicates things are setup correctly.
    - This is not a case of Issue 2.3 listed here: http://support.microsoft.com/kb/2563324 (verified by Microsoft Support)
    - If we disable SSL on the IOS device and connect via plain HTTP the messages are displayed correctly!
    - If we use a different SSL certificate, the issue still occurs - so not a problem with the original cert.
    Does anyone have any suggestions on what would cause this? Does the ISO devices have any sort of log that would indicate why it's reporting this error? The current error is pretty unhelpful.

    GFI Have a solution for this problem. It is to do with iOS implementation of reading the message headers when SPF compliance modifications are made by GFI.
    http://kb.gfi.com/articles/SkyNet_Article/Error-This-message-has-not-been-downlo aded-from-the-server-when-downloading-messages-to-an-iOS-device?retURL=%2Fapex%2 FSupportHome&popup=true

  • Multiple SIM instances on same db - disable Active Sync for one?

    Hello. I am trying to set up two instances of Identity Manager that are running on the same machine and are connected to the same database.
    I want one to be doing the Active Sync provisioning and the other to not.
    Is there a way to disable Active Sync resources from starting up on one instance but not the other? I know I can manually start them, but I'd like the Active Sync resources to automatically start up for one of the servers.
    I am using -Dwaveset.hostname and setting it to a different value for each instance.
    Thanks.

    957354 wrote:
    Hi Laxman,
    If its a testing purpose its ok to have a one oracle_home and single listener for multiple DB. One problem when applying oracle patches for one of the instances running in a multiple DB running then you need to bring all the DB running in that host since the oracle_home is sharing between all db instances.
    Thanks
    Sunil Rajesh K.C.Starting with 11g, patchset updates are full installs and done into a new home. This makes it possible to migrate one instance at a time. However, your point would be a consideration for one-off patches like CPUs.
    However, please note ... OP --- PLEASE NOTE even with multiple oracle homes, you still only need a single listener.

  • Calendar & Contacts do not Sync to iPhone via Active Sync

    I've been trying to figure this out for 3 days now. I have searched all over this site and the Internet in general and nothing I have found has fixed the issue.
    Basically, starting last week, my Push mail from Exchange started draining my battery from 100% - dead in about 8 - 10 hours. I turned off Push and my battery draining issues went away.
    On Monday while searching the net for assistance with the battery draining issue I saw a suggestion to delete the account from the iPhone and re-add it. I did this and all h*ll broke loose.
    Ever since adding the exchange server back in the following issues exist:
    1. No contacts will sync over from my Outlook Mailbox.
    2. No calendar entries will sync over from my Outlook Mailbox.
    3. Only a handful of existing mail messages synced over after adding it (doesn't matter what I set my number days/months to save).
    4. New mail seems to show up fine, but if I read it in Outlook it does not mark it as read on the iPhone and vice versa.
    5. If I get a new invite for a meeting it adds it to my calendar on the iPhone but I dont' get any of the options to accept/decline.
    I have tried everything I can think of an all of the suggestions that have been posted online. I've even gone as far as deleting/archiving EVERYTHING out of my mailbox, including contacts, calendar entries, tasks, all mail sent and received, you name it. Nothing I do gets Active Sync working the way it should.
    I've added and removed the exchange account to/from my iPhone so many times I can practically do it blindfolded. I even restored my iPhone to factory defaults and then restored a backup I had from before the problems started occurring.
    Other co-workers on the same Exchange server are not having these issues.
    Any ideas from anyone? I'm trying to see if I can get some assistance from our Exchange team but I don't know what if any help I will get as this is not a supported device on our network.
    One thing that I can't seem to do (probably the version of Exchange we are running) is get to the mobile devices section of the Outlook Web Access Client to delete the iPhone profile.
    FWIW, this is an original iPhone running 2.2.

    I have this exact same issue!
    I was on 2.0.1 running fine until late last week, noticed emails would not show up unless I had opened them in outlook. I thought I ran into a bug so I upgraded to 2.0.2. Now I can sync my email if outlook had them opened previously, but no calendar or contacts at all. I don't think my exchange admins will move me to another server, any other ideas?
    I love my iphone but if these features don't work I can't use it. I would appreciate any ideas.

Maybe you are looking for

  • Unable to validate security for resource 'EXTRANETLOOK'

    We have UCM 10gR3 installed. We have Extranetlook component installed along with WebDAV. Currently when the users take any action that they don't have privilege to, they come accross Unable to validate security for resource 'EXTRANETLOOK'error messag

  • Problem with styles

    In my jsf files i have id and class attributes associated with elements. The class attribute is used to specify generic style properties like color,font etc. and the id attribute is used to mention the properties specific to the element(like top,left

  • Servlet session problem

    hi all, I am new to servlet. i have creted a server program and many user can login using thier username ,role and password. if more than one user can login simultaneously i could nt able to mainatin the session, it always showing the last login data

  • (AIR) out of memory error when building workspace

    Hi, I created a very simple AIR project. But during the load the workbench gave me out of memory errors. Please find below the relevant .log entries. Thanks for your help, -Rogier !SESSION 2007-06-13 14:13:10.241 eclipse.buildId=unknown java.version=

  • Service PR Delivery Address

    Hi. For External services PR,  the delivery address should be site address. Also the delivery information is not copying into PR delivery address. How this can be done ? Is there any config ?