Is anyone experiencing High loading times for iCal events using Outlook exchange

I am using an iPad2 and use the default iCal and another calendar app (HD Informant) connected Exchange and synched to Outlook. Recently it is taking over  45 seconds to a minute to load calendar events. When I go to swipe to a new week, it freezes' or at least takes another 45 seconds to move day to day, week to week or month to month.
Is anyone experiencing similar issues?

categories are not supported at present. If you add a contact to your phone and sync, you will need to categorize in outlook.

Similar Messages

  • Can I set up a default time for iCal events?

    Can I set up a default time for iCal events?

    That's actually how Guest Access feature works. You can share internet to your guest/visitors without giving them access to your local network. You may configure the Guest Access settings on the router using Linksys Smart Wifi through the local access interface; check this site for the instructions, http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=b509a1805dd6416ebb0e35a7e5a58937_Configuring_Guest...
    Added Info:
    Guest Network Frequently Asked Questions
    http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=f35bd58fda4148929ac482f3c7968e04_Guest_Network_Fre...

  • IPod changes times for iCal events

    My iPod seems to be changing the time of my iCal events. For example, the event in iCal is set for 1 p.m., but when I use iSync to sync, it shows up on my iPod as starting at 8 a.m.
    Anyone else have this problem?

    Thanks for the response. Do you know how I can match time zones? I've got my iMac set up on the Central time zone, and my iPod also shows the correct Central time zone. I haven't been able to find a time zone setting in iSync.

  • Wrong Time for iCal events

    I am running System 10.7.5.
    I am running iCal 5.0.3.
    When ever I want to schedule an event on the half hour, iCal refuses to post the proper time.
    For example, I want to schedule an event at 8:30 PM; iCal schedules it for 8 or 7:30 PM.
    It even stubbronly reverts to 19:30 (military time, which I usually use) when I want to
    schedule it at 8:00 PM or 20:00 (military time again).
    BTW, the System Clock is accurate to the second, so that is not the problem.

    You have to change your time zone to Arabia Standard Time. It will help you now.

  • Has anyone experienced long downloading times for moutnain lion

    hi has anyone had any difficulties downloading mountain lion...or found it very slow and long

    1.5 days here to download on high speed. I'm reading reports all over the internet that there is something wrong with App Store speeds. Go to another site, and everything loads lickety split.
    What is happening to Apple these days? From killed battery life on Macbooks, to a poor Maps release, to iPhone issues, to software mishaps like FCPX, to sweatshop slaves jumping off the roof because of Apple manufacturing conditions in China... This is not your daddy's Apple company any more. Quality control is becoming about as good as your B & D toaster.

  • Very high parse times for query rewrite using cube materialized views

    We recently upgraded to version 11.2.0.2 (both AWM and Oracle database server). We are using cube materialized views with query rewrite enabled. Some observations of changes that took place when we rebuilt all the dimensions and cubes in this version:
    1. Queries against the base tables take about 35 seconds to parse. Then they execute in a tenth of a second. Even simple queries that just get a sum of the amount from the fact table (which is joined to all the dimensions) takes that long to parse. Once parsed, the queries fly.
    2. I noticed that the materialized views used to use grouping sets in the group by clause in version 11.2.0.1, but now they use group by rollup, rollup, rollup...
    If we disable query rewrite on the MV or for my session, parse times drop to less than a second. Ideas?

    There does appear to be a slow down in parse times between 11.1.0.7 and 11.2. We are still investigating this, but in the meantime here is a way to force the code in 11.2 to generate a GROUPING SETS clause instead of the new ROLLUP syntax.
    The trick is to create a dummy hierarchy containing only the leaf level. This is necessary for all dimensions that currently have a single hierarchy. As a simple example I created a dimension, PROD, with three levels, A, B, and C, in a single hierarchy. I then created a one dimensional cube, PC. Here is the SELECT statement for the MV in 11.2. Note the ROLLUP clause in the GROUP BY.
    SELECT
      GROUPING_ID(T3."CLASS_ID", T3."FAMILY_ID", T3."ITEM_ID")  SYS_GID,
      (CASE GROUPING_ID(T3."CLASS_ID", T3."FAMILY_ID", T3."ITEM_ID")
       WHEN 3
       THEN TO_CHAR(('A_' || T3."CLASS_ID") )
       WHEN 1
       THEN TO_CHAR(('B_' || T3."FAMILY_ID") )
       ELSE TO_CHAR(('C_' || T3."ITEM_ID") )  END)     "PROD",
      T3."CLASS_ID" "D1_PROD_A_ID",
      T3."FAMILY_ID" "D1_PROD_B_ID",
      T3."ITEM_ID" "D1_PROD_C_ID",
      SUM(T2."UNIT_PRICE")     "PRICE",
      COUNT(T2."UNIT_PRICE")  "COUNT_PRICE",
      COUNT(*)  "SYS_COUNT"
    FROM
      GLOBAL."PRICE_AND_COST_FACT" T2,
      GLOBAL."PRODUCT_DIM" T3
    WHERE
      (T3."ITEM_ID" = T2."ITEM_ID")
    GROUP BY
      (T3."CLASS_ID") ,
      ROLLUP ((T3."FAMILY_ID") , (T3."ITEM_ID") )Next I modified the dimension to add a new hierarchy, DUMMY, containing just the leaf level, C. Once I have mapped the new level and re-enabled MVs, I get the following formulation.
    SELECT
      GROUPING_ID(T3."CLASS_ID", T3."FAMILY_ID", T3."ITEM_ID")  SYS_GID,
      (CASE GROUPING_ID(T3."CLASS_ID", T3."FAMILY_ID", T3."ITEM_ID")
       WHEN 3
       THEN ('A_' || T3."CLASS_ID")
       WHEN 1
       THEN ('B_' || T3."FAMILY_ID")
       WHEN 0
       THEN ('C_' || T3."ITEM_ID")
       ELSE NULL END)  "PROD",
      T3."CLASS_ID" "D1_PROD_A_ID",
      T3."FAMILY_ID" "D1_PROD_B_ID",
      T3."ITEM_ID" "D1_PROD_C_ID",
      SUM(T2."UNIT_PRICE")     "PRICE",
      COUNT(T2."UNIT_PRICE")  "COUNT_PRICE",
      COUNT(*)  "SYS_COUNT"
    FROM
      GLOBAL."PRICE_AND_COST_FACT" T2,
      GLOBAL."PRODUCT_DIM" T3
    WHERE
      (T3."ITEM_ID" = T2."ITEM_ID")
    GROUP BY
      GROUPING SETS ((T3."CLASS_ID") , (T3."FAMILY_ID", T3."CLASS_ID") , (T3."ITEM_ID", T3."FAMILY_ID", T3."CLASS_ID") )This puts things back the way they were in 11.1.0.7 when the GROUPING SETS clause was used in all cases. Note that the two queries are logically equivalent.

  • I just updated my RAM and I keep getting a crash report. I have a 21.5 Inch mid 2010 imac. I also am experiencing slow load times and when I try to open Final Cut it says that quartz extreme is not compatible and that I have no VRAM even though I do.

    I just updated my RAM (replaced the two 2 gig cards with two Corsair 8 gig cards) and I keep getting a crash report. I have a 21.5 Inch mid 2010 imac. I also am experiencing slow load times with Photoshop and when I try to open Final Cut it says that quartz extreme is not compatible and that I have no VRAM even though I do.
    Here is the crash report:
    Interval Since Last Panic Report:  5426204 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    2DD57DDB-BB42-5614-395A-CA6225BDAFD9
    Wed Mar 20 11:36:53 2013
    panic(cpu 0 caller 0xffffff801aa43d8e): "a freed zone element has been modified in zone: maps"@/SourceCache/xnu/xnu-2050.18.24/osfmk/kern/zalloc.c:219
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81eb0eb950 : 0xffffff801aa1d626
    0xffffff81eb0eb9c0 : 0xffffff801aa43d8e
    0xffffff81eb0eba00 : 0xffffff801aa435d2
    0xffffff81eb0ebae0 : 0xffffff801aa663f7
    0xffffff81eb0ebb20 : 0xffffff801aa67398
    0xffffff81eb0ebc70 : 0xffffff801aa6887c
    0xffffff81eb0ebd20 : 0xffffff801ad5b8fe
    0xffffff81eb0ebf50 : 0xffffff801ade182a
    0xffffff81eb0ebfb0 : 0xffffff801aaced33
    BSD process name corresponding to current thread: launchd
    Mac OS version:
    Not yet set
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x000000001a800000
    Kernel text base: 0xffffff801aa00000
    System model name: iMac11,2 (Mac-F2238AC8)
    System uptime in nanoseconds: 1070542822
    last loaded kext at 707348380: com.apple.driver.AppleIRController    320.15 (addr 0xffffff7f9c53e000, size 28672)
    loaded kexts:
    at.obdev.nke.LittleSnitch    3908
    com.apple.driver.AppleIRController    320.15
    com.apple.driver.AppleUSBCardReader    3.1.0
    com.apple.driver.AppleFileSystemDriver    3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    34
    com.apple.iokit.SCSITaskUserClient    3.5.1
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.2.2
    com.apple.driver.AppleUSBHub    5.2.5
    com.apple.driver.AppleFWOHCI    4.9.6
    com.apple.driver.AirPort.Atheros40    600.70.23
    com.apple.driver.AppleUSBEHCI    5.4.0
    com.apple.driver.AppleAHCIPort    2.4.1
    com.apple.iokit.AppleBCM5701Ethernet    3.2.5b3
    com.apple.driver.AppleUSBUHCI    5.2.5
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleACPIButtons    1.6
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.6
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    196.0.0
    com.apple.nke.applicationfirewall    4.0.39
    com.apple.security.quarantine    2
    com.apple.driver.AppleIntelCPUPowerManagement    196.0.0
    com.apple.iokit.IOUSBHIDDriver    5.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.5.1
    com.apple.iokit.IOUSBMassStorageClass    3.5.0
    com.apple.driver.AppleUSBMergeNub    5.2.5
    com.apple.driver.AppleUSBComposite    5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.5.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOAHCISerialATAPI    2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.5.1
    com.apple.iokit.IOUSBUserClient    5.2.5
    com.apple.iokit.IOFireWireFamily    4.5.5
    com.apple.iokit.IO80211Family    500.15
    com.apple.iokit.IOAHCIFamily    2.2.1
    com.apple.iokit.IOEthernetAVBController    1.0.2b1
    com.apple.iokit.IONetworkingFamily    3.0
    com.apple.iokit.IOUSBFamily    5.4.0
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOHIDFamily    1.8.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    220
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    344
    com.apple.iokit.IOStorageFamily    1.8
    com.apple.driver.AppleKeyStore    28.21
    com.apple.driver.AppleACPIPlatform    1.6
    com.apple.iokit.IOPCIFamily    2.7.2
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.corecrypto    1.0
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.2 GHz, 16 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 5670, ATI Radeon HD 5670, PCIe, 512 MB
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341384758334D314131333333433920
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341384758334D314131333333433920
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.70.23-P2P
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 0 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd110000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa120000 / 3

    There have been a few reports on here where Corsair RAM seems to have caused users a lot of grief with crashes.
    The recommendation on here, mostly, is to only buy RAM from macsales.com or crucial.com as they guarantee their modules will work and offer a no quibble lifetime guarantee.
    I'd put the original RAM back in, return the Corsair chips for a refund and re-order from one of those two companies.
    http://eshop.macsales.com/shop/apple/memory/iMac
    http://www.crucial.com/

  • Default time frame for ICAL events

    Ever since I upgraded to Lion, the default time frame for ICal events has been set to "entire day".  Is there any way to change this?

    Hi,
    If you add a time to the event description, like "meeting  11am tomorrow", it should create an event (with the title "meeting" on tomorrows date at 11am with a duration of 1 hour.
    Best wishes
    John M

  • Increase in Loading time for LV search in 2011

    Initially when I loaded LV2011 my quick drop and the search took nearly 5 seconds but now it takes nearly 20 seconds to load so is there any reason for this kind of performance. Also I don't have anyother big software loaded or running in my PC. I have added few toolkits from VI package manager may be that is the reason?.
    The best solution is the one you find it by yourself

    RavensFan wrote:
    In my message in the other thread, I commented that I thought 20 seconds wasn't all that long.  But I thought you were commenting on the loading time for LabVIEW itself.  That does seem like a long time for any of the internal LabVIEW dialogs to come up.
    (Actually, I find several internal dialogs seem to take longer to load the first time then they should including the properties dialog.  But not 20 seconds long.)
    Hopefully, with this message thread in the LabVIEW forum, others can comment and offer suggestions on how to determine what the issue your having is.
    Yes now I have plenty of toolkits ( Thanks for spotting me in the other thread )
    Jeff you hit the bullseye. The loading was set as Load palette when needed.
    Thanks
    The best solution is the one you find it by yourself

  • HT1577 Why am I experiencing long download times for an HD movie rental from itunes?

    I have been experiencing long download times for movie rentals from itunes (this time 11 hours).  I have even tried to use ethernet, turn off simultaneous downloads, and shut down my browser, to speed up the time but that didn't help.  My internet download speed is about 7mbps.  Any suggestions?

    iTunes: Purchasing and viewing HD videos
    When you purchase an HD video on a supported device or computer, only HD video will be downloaded. To download the SD version, you need to download the video again from your Purchased page. Conversely, if you purchase an HD video on an unsupported device, the SD version will be downloaded. Then, you will need to download the HD version from your Purchased page. Learn more about downloading previous purchases."

  • Set frame delay time for animated gif using ImageIO

    I'm trying to change the delay time of each frame for an animated gif by changing the metadata for each frame as following but it doesn't change anything.
    static private IIOMetadata setMetadata(IIOMetadata metadata, int delayMS) throws IOException
              Node root = metadata.getAsTree("javax_imageio_gif_image_1.0");
              for (Node c = root.getFirstChild(); c != null; c = c.getNextSibling())
                   String name = c.getNodeName();
                   if (c instanceof IIOMetadataNode)
                        IIOMetadataNode metaNode = (IIOMetadataNode) c;
                        if ("GraphicControlExtension".equals(name))
                             metaNode.setAttribute("delayTime", Integer.toString(delayMS));
         }Does anyone know how to set delay time for animated gif using ImageIO ?

    I'm trying to change the delay time of each frame for an animated gif by changing the metadata for each frame as following but it doesn't change anything.
    static private IIOMetadata setMetadata(IIOMetadata metadata, int delayMS) throws IOException
              Node root = metadata.getAsTree("javax_imageio_gif_image_1.0");
              for (Node c = root.getFirstChild(); c != null; c = c.getNextSibling())
                   String name = c.getNodeName();
                   if (c instanceof IIOMetadataNode)
                        IIOMetadataNode metaNode = (IIOMetadataNode) c;
                        if ("GraphicControlExtension".equals(name))
                             metaNode.setAttribute("delayTime", Integer.toString(delayMS));
         }Does anyone know how to set delay time for animated gif using ImageIO ?

  • How can data load time can be optimized using routine

    Hi,
    Data laod is taking too much time . How can data load time can be optimized using routine
    Regards,
    Vivek

    Hi Vivek,
    If you have code wirtten, please try to post the same, so that i cna help you in optimising it and give it you...
    General Guideleines.
    1. Dont use select statement inside the loop.
    2. where possibel try to use Read statement with Binary Search Option and avoid using loop statement.
    3. Try to avaoid joins if you are using any, isntead use For alll entries.
    4. Try When u use for all entries try to make sure that your internal tbale is not initial.
    5. Try to Sort and delete adjacent duplicates from internal tables wherever needed.
    6. Use clear statement whererver required.
    Regards,
    Nanda.S

  • How to Set A Default Start Time For New Events In Calendar?

    How to Set A Default Start Time For New Events In Calendar?

    John,
    Thanks for that suggestion - could not get it to work. However, I did manage a different approach. I finally determined the sequence of events in terms of how the various events and listeners fire (I think).
    Basically, the CalendarActivityListener fires, followed by the listener associated with the Calendar object's Create facet, followed finally by the CalendarEventListener - the final is where the TriggerEvent is available and then finally, control is passed to the popup/dialog in the Create facet. So, my approach of trying to set/get the TriggerDate in the user's HTTP session was doomed to failure because it was being get before it had been set :(
    Anyway, I ended up adding a bit of code to the CalendarEvent listener - it grabs the current BindingContext, navigates through the DCBindingContainer to derive an Iterator for the ViewObject which drives the calendar and then grabs the currently active row. I then do a few tests to make sure we're working with a "new" row because I don't want to alter start & end dates associated with an existing calendar entry and then I define the Start and End dates to be the Trigger Date.
    Works just fine. Snippet from the listener follows
    BindingContext bindingContext = BindingContext.getCurrent();+
    *if ( bindingContext != null )    {*+
    DCBindingContainer dcBindings = (DCBindingContainer) bindingContext.getCurrentBindingsEntry();+
    DCIteratorBinding iterator = dcBindings.findIteratorBinding("EventsView1Iterator");+
    Row currentRow = iterator.getCurrentRow();+
    if ( currentRow.getAttribute("StartDate") == null)+
    currentRow.setAttribute("StartDate", calendarEvent.getTriggerDate());+
    if (currentRow.getAttribute("EndDate")==null)+
    currentRow.setAttribute("EndDate", calendarEvent.getTriggerDate());+
    *}*

  • Load time for a 1hr m2v and wav timeline

    Hardware: Intel P4 3.2ghz, 3GB ram, Nvidia FX 5700, Asus P4C800 mobo, m-audio delta-66 sound
    I'm experiencing a lengthy  wait time to load a 1hr  video and sound track as timeline.  It has been loading for over 25 minutes now and thelittle splash screen reports over an hour to go... as I write this note.
    I'm curious if that is about normal an this kind of hardware?  I ask because I loaded the same video and sound file into DVD architect in less than a minute. and I've had really bad trouble with Encore CS4 crashing repeatedly.  Or locking up and having to be killed.
    I moved the whole shooting match to a different machine and am able to at least run Encore, but wondered if the lengthy load time is a signe of trouble on this machine too.
    Oh, and nothing else going on while the video is loading... (just normal stuff running as always)

    the_wine_snob wrote:
    Harry,
    Tell us about the I/O sub-system, i.e. your HDD's, their size, speed, controller type and how they are allocated. The operation of Importing is highly dependent on the I/O.
    I forgot to mention the OS too.  WinXP pro sp/3
    HDD:
    1 IDE 250 GB partition1 65 GB OS, partition2 185 GB data
    2 Sata 200 GB No partitions
    All are 7200 rpm (or whatever the 7200 stands for)
    The work is located on 1st sata drive (E)
    Common stuff for the hardware its on.  Also I recall loading stuff in `the blink of an eye' when I was using CS2 Encore (On this same machine, but no longer no installed)
    I see a monster thread here about Nvidia cards and Encore crashing.  I do have an Nvidia FX 5700 as mentioned earlier, and it has the latest drivers available at nvidia site.
    Also I have hardware acceleration set at 50 percent... Encore will not run with it set 100 percent.
    Acceration itself should not come into play when importing right?

  • Slow load times for itunes u

    We have noticed that lately iTunes U for UW-Whitewater (uww.edu) has been extremely slow, and sometimes even timing out.  We have been trying this from various different locations and computers.  It appears to be something on the apple side.  Has anyone else seen this?
    Apple Engineers: Any updates as to what might be going on?

    Greetings Guys;
    We had the same issue yesterday, but the issue seemed to be affecting only the iTunes desktop application.  When I would preview using the iPad, load times were normal.  The issue seems to have been resolved this morning.
    Syd Rodocker
    Tennessee State Department of Education

Maybe you are looking for