Address Book is slow to change views

My address book has ~2400 entries and is now moving very slowly when changing views or updating any of the contacts.
Is there a way to rebuild the address book database or something?
Thanks for your help.

I think I found my issue - I removed a smart group which I was keeping track of items I have moved to other groups as a catch all. With over 2000 contacts this smart group was really working hard.
I am back to full speed.

Similar Messages

  • One of my 2 address books can no longer be viewed, how do I access it?

    ''locking this thread as duplicate, please continue at [https://support.mozilla.org/en-US/questions/1051908 /questions/1051908]''
    one of my 2 address books can no longer be viewed, how do I access it? It disappeared within the last few days. I can still find addresses that are in the 2nd address book, but I cannot view it, so only 1/8 of my addresses are now viewable. How do I access the 2nd address book?

    Hi ronc2, there isn't a specific setting for this. Firefox's built-in JavaScript settings allow you to control several aspects of scripts*, but unfortunately not this one.
    I previously tried to find some other options for individually turning off this event, but I couldn't find a way. Someone might be able to create an add-on to solve this problem, but it will take someone cleverer than I.
    Extensions that disable scripts on a site-specific basis:
    * If you regularly visit some sites which do this, you can block JavaScript on that specific site using the YesScript extension. Unfortunately, other script-based functionality will be blocked as well.
    * YesScript does not preemptively block scripts on every site. If you have to visit a lot of random sites and want to take a paranoid approach of having scripting blocked until you see as much of the site as you can see without running scripts, then the NoScript extension would be for you. But even then it's "all or nothing".
    ''* These include: JavaScript enabled yes/no, override right-click menu yes/no, change order of windows yes/no, move and resize windows yes/no, close windows yes/no, specific features of pop-up windows, change images yes/no, detect copy/cut/paste and modify selection yes/no.''

  • Address book won't save changes to note field

    Like the header says. Address book won't save changes to note field. There's another thread with the same header:  https://discussions.apple.com/thread/2591053?threadID=2591053  But it's archived so I had to post this new one.
    If I made a change in any non-note field however, it would stay.
    Note: the notes field can be edited with actually having to go into official "edit" mode. Does this make it more prone to corruption? Why would Apple make the notes field NOT need that extra step of protection. Do they think my notes aren't as important?  How would they know?
    I fixed this one card with a bandaid solution by exporting it and reimporting it.  But I guess I need to do that with all 2,000 of my contacts now. It was mentioned on theother thread that somebody made an address book backup and then deleted every contact in the address book and imported them fresh from the backup and that worked.
    The underlyilng issue is still not solved though. How could this happpen in the first place, and how do I know what other contacts haven't held lthe changes I thought I made?

    Hi,
    Using the Note field
    You can add notes to any contact in Address Book. This makes it easy to keep track of details about a person in your address book.
    Select the person in the Name column in Address Book, then click the Note field in the card.
    The Note field can be edited at any time, even if the card is not in edit mode.
    You could make a dedicated field that requires the edit button...
    Using custom labels
    You can change the label that appears next to a piece of information on a contact's card. For example, you might want to change "work" to "support" next to a phone number.
    Select the contact that you want to change.
    Click the Edit button at the bottom of the window.
    Click the label next to a field, then choose Custom from the pop-up menu.
    Enter a new label for the field.
    The new custom label appears on this contact's card only.
    If you want to change a specific label on all cards in your Address Book, edit the card template. Choose Address Book > Preferences and click Template. The Template pane also allows you to add other types of fields on contact cards, such as a nickname, job title, birthday, anniversary, and URL. Use the Add Field menu.

  • How do I send a message to my whole address book, for instance, a change of phone number?

    How do I send a message to my whole address book, for instance, a change of phone number?

    The feature has been disabled, so now you can only play a sound on the devices

  • Address book applescripting - slows computer via memory drain

    Hi,
    i've just got my new gleaming macbook pro - a return to mac after ~16 years. whew.
    I was a heavy user of categories and contacts in outlook - had two contact folders, A and B, with categories in each. Additionally for some categories there is a third field - location. In total there are 2500 contacts I deal with.
    To import my contacts was not trivial - i used little creatures O2M to bring over my messages, which worked well, but didn't give as great a result on contacts (lost a lot of fields). Then I used Abee on a csv file and found it was great - well worth the $10.
    I mapped my custom fields to related names custom fields.
    After a lot of reading i think that the best location for user defined fields (in my case group, category, and location) is as a custom named URL. This allows me to make Smart groups in address book to sort through these categories.
    So I wrote some applescript to move info from related names to URL fields. It steps through everyone in my address book and if the label "Group" exists in related names and the value is "B" then add a new URL and delete the related name label.
    The script is:
    tell application "Address Book"
    try
    repeat with this_person in every person
    set namestoremove to {}
    repeat with this_label in (get related name of this_person)
    if the label of this_label = "Group" and the value of this_label = "B" then
    make new url at end of urls of this_person with properties {label:"Group", value:"GroupB"}
    --properties of this_label
    set namestoremove to namestoremove & (id of this_label)
    --delete (related names of this_person whose id is id of this_label)
    end if
    end repeat
    repeat with name_id in namestoremove
    delete (related names of this_person whose id is name_id)
    end repeat
    save
    end repeat
    save
    end try
    end tell
    I have to acknowledge Trevor Harmon scripts for giving guidelines.
    I had to add the get statements to resolve properly the related names of the person
    The script works well on a small address book, but on the full book it slows to a crawl and stops.
    Of course I could re-import using abee - but that wont help me learn about address book scripts.
    Anyone see any problems that would cause the script to slow to a crawl? I assume its somehow consuming memory....

    Hello
    Accessing item in large list can be very slow in AppleScript unless appropriate coding method is used. Also the 'whose' filter can be very slow in filtering large collection of objects (though I doubt it is the case here).
    Anyway, you may try something like the script below which avoids the 'whose' filter.
    (NOT tested, for my environment is too for this.)
    --SCRIPT 1
    tell application "Address Book"
    repeat with p in (get every person)
    set p to p's contents -- # dereference the list item reference [1]
    tell p
    repeat with r in (get its related names)
    set r to r's contents -- # derefenence the list item reference [1]
    if r's label = "Group" and r's value = "B" then
    make new url at end of urls with properties {label:"Group", value:"GroupB"}
    delete r
    --delete related name id (get r's id) -- # alternative to the above [2]
    end if
    end repeat
    end tell
    --save addressbook
    end repeat
    save addressbook
    end tell
    [1] Dereferening the list item reference is costly operation in AppleScript.
    So dereferece it once (especially if it is used more than once in the iteration).
    [2] Use 'by ID' reference form if the 'delete r' does not work properly.
    (E.g., if r is in 'by index' reference form and there're multiple related names,
    'delete r' won't work properly due to changing index.)
    --END OF SCRIPT 1
    Or the following one which, in addition, implements a fast method to process large list.
    --SCRIPT 1a
    main()
    on main()
    script o
    property pp : {} -- # define large list as script object's property
    property rr : {} -- # idem
    tell application "Address Book"
    set pp to get every person
    repeat with p in my pp -- # use refenence to script object's property (i.e. my pp)
    set p to p's contents -- # dereference the list item reference [1]
    tell p
    set rr to get its related names
    repeat with r in my rr -- # use refenence to script object's property (i.e. my rr)
    set r to r's contents -- # dereference the list item reference [1]
    if r's label = "Group" and r's value = "B" then
    make new url at end of urls with properties {label:"Group", value:"GroupB"}
    delete r
    --delete related name id (get r's id) -- # alternative to the above [2]
    end if
    end repeat
    end tell
    --save addressbook
    end repeat
    save addressbook
    end tell
    end script
    tell o to run
    end main
    [1] Dereferening the list item reference is costly operation in AppleScript.
    So dereferece it once (especially if it is used more than once in the iteration).
    [2] Use 'by ID' reference form if the 'delete r' does not work properly.
    (E.g., if r is in 'by index' reference form and there're multiple related names,
    'delete r' won't work properly due to changing index.)
    --END OF SCRIPT 1a
    Hope this may help,
    H

  • Why is Address Book so slow under Lion?

    I changed to Lion as soon as it came out, & many of the intial problems have been resolved since. But I find that Address Book has become & remains a very clunky thing, extremely slow in terms of its search function. Anybody else notice this or have a solution?
    Am using a MacBookPro running 10.7.3
    thanks, Pierre

    I followed your suggestion on speeding up address book and deleted all contacts and imported them again from the archive however they only appear briefly before dissapearing. I assume that iCloud is deleting them.
    I have also tried restoring from timemachine but get "Address book cant be modified or deleted because it's required by Mac OSX"
    Any thoughts would be greatly appreciated
    All the best

  • How can I get my phone to stop deleting my changes made in Address book without deleting the changes made on the iPhone?

    On my old Macbook whenever I would sync my iphone, if I had changed something on the calendar it gives me the option to choose between the computer event or the iphone event (so lets say I'm out and I changed the time of my appointment on my phone, when I get home and sync my phone I choose to keep the time I changed it to on my phone, not what's on my computer).
    Now... what's happening is I'm getting the message: syncing your contacts will change more than 5% of the contacts on the COMPUTER. So that means, all the bulk changes I just made in address book on the computer are going to get deleted and replaced with what is originally on the phone. That's not what I want. I want to change what's on the phone with the changes I made on the computer in address book. Make sense? How do I do that? Because I don't necessarily want to wipe out everything on the phone because I don't know if that has been transferred to the address book... So If I added some phone numbers within the last month (i don't remember the last time I synced my phone), then I would loose them if I chose to replace information on the phone with what's on the computer (there's an option to do that under info when syncing).
    Does that make sense? Please let me know it this is at all confusing. I'm really trying to resolve this before Saturday early morning ... My mom is going out of town and it's her work phone, so I need to figure this out for her. Thanks a bunch!

        mnjclark,
    I'm glad to hear that you have found a work-a-round so that your device works while making calls meanwhile being connected to Bluetooth to your automobile.
    At this time, based on the way the device was manufactured, there is no setting available that will allow this change to be permanent. When the device is rebooted, the settings may be adjusted which will require you to manually change back to CDMA only mode if needed.
    EfrainM_VZW
    Follow us on Twitter @VZWSupport

  • Why is the Address Book app slow to update my contacts?

    When I try to import my Google contacts into my Mac Address Book via vCard (.vcf) format, Address Book app takes an eternity to finish updating (like a half hour or more), during which I cannot do anything else in the Address Book.
    The last time I tried to do so, yesterday, my entire system became extremely slow and I had to restart the computer. BTW, I use Mac OS X v. 10.7.5 (Lion).
    I also notice that searching for contacts within the Address Book is an extremely slow process. I begin to type a name and the program is very sluggish to respond or display anything, forcing me to type very slowly.
    What can I do to resolve these issues so I can update and search for my contacts in the Address Book within reasonable amounts of time?

    you have a 4G iPod. As Apple said in June, iOS 7 is not compatible with the 4G iPod.
    All the iOS devices compatible (iPhone 4 and later, iPad 2 and later, and 5G iPod touch) with iOS 7 have at least 512 MB of memory (RAM). The 4G iPod only has 256 MB

  • Both mail and address book very slow to launch on 10.6 and 10.6.1

    Like unimaginably slow. After clicking on the applications, I was able to perform a google search, find this forum, and and start this thread before either application became active.
    I am running 10.6.1 and have had this problem since 10.6. not before.
    I upgraded my system, I did not install Snow Leopard fresh, and I really hope I dont have to to solve this problem. So much for the speed portion of the Snow Leopard improvements!
    Has anybody else seen this issue? I certainly hope so because it's terrible to have to track down a problem like this alone.
    Message was edited by: almostinverted

    Thank you for this link. Here is the process I used to fix it.
    1 - I had one smart group in address book, with a NOT variable. (if contact is NOT in any group)
    2 - click on the smart folder, wait a long time for it to be selected.
    3 - delete the smart folder
    4 - close address book
    5 - reboot.
    6 - both Mail and Address book now open very quickly. Problem solved
    Thanks again!
    EDIT:
    re-creating the same smart group brings back the same problem!!! So we have broken address book functionality in 10.6? just awesome....
    Message was edited by: almostinverted
    Message was edited by: almostinverted

  • Address Book is slow to pen the first time in online mode.

    Hello.
    Using Exchange 2013 with Outlook 2013 in online mode (not cached).  When I open Outlook and click on the address book icon, it can take upwards of 30 seconds for it to open.  It is find opening every time after that.  Our address book
    is not large by any means so why would it take so long?  What is the best way to troubleshoot?
    Thanks!
    Shawn

    Hello.
    Using Exchange 2013 with Outlook 2013 in online mode (not cached).  When I open Outlook and click on the address book icon, it can take upwards of 30 seconds for it to open.  It is find opening every time after that.  Our address book
    is not large by any means so why would it take so long?  What is the best way to troubleshoot?
    Thanks!
    Shawn
    What CU are you on? This is a known issue with CU5, fixed in CU6 ( This KB applies to the GAL slowness issue)
    http://support.microsoft.com/kb/2986779
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • Address book sharing slow

    hello, it is now two weeks we are running our new MACs . we are all 10.6.2 (3 clients + 1 mac mini server)
    I was able to create a shared address book adding the same account on each clients.
    What I see is that it is really slow, useless for business applications, you can wait for minutes after you click on one contact or jump from one group to a different one.
    our database is made by 1000 contacts and approx 6Mb
    any idea?
    thanks.

    Join the club. This service prominently featured in SL Server sales literature is, to be charitable, not useable with many contacts. Our database is about 3400 so maybe it works with less than a thousand, Apple support could not tell me. To save you some trouble it is not your hardware as we are running a quad-core Xserve and have increase RAM to try to get this to work to no avail. We were told early on in the 10.6 life cycle that we should use a shared MobileMe account. Works better that Address book sever but not reliable - sometimes doubles contacts, sometimes we find differences between Address Books on different Macs, etc., etc.
    Also, I cannot recommend Daylight. Wrestled with it for 5 years and finally gave up to try Address Book Server when Apple released it on SL.
    Sure seems like this should not be so hard!
    Hg

  • HT2486 My address book is slow

    My address book on the iMac does sync across iCloud. All other devices seems to work.  It is slow and unresponsive.
    On my mac laptop, it has tripled the contacts. Instead of 6000, I have 18,000.  It is also slow....understandably.
    Used to be able to click on a contact and drag it to a template in Pages to "merge"  Can't do this with new pages either.
    Solutions? 
    Using OS X, version 10.9

    I had the same issue.  Select all contacts, export them to your desk top (so you have a copy, just in case).  Then, go to settings and uncheck the box in iCloud that syncs your address book.  It will wipe your computer address book clean.  Afterwards, check the box again, and it will import all of the contacts from your iCloud (could take a few minutes to complete, depending on how many contacts you have).  This solved my issue.  All is in working order again. Hope this helps!

  • Address book very slow to show addresses

    When I start up address book, although the application opens up quickly the addresses take several minutes to appear in the window. I can't be completely sure but I think it may be related to upgrading to OS X 10.6 - I don't remember this being a problem some months back.
    Is there anything I can do to fix this problem.
    Thanks in advance
    - Vikas

    In addition to this problem, from time to time the Address Book will slip into "Beach-ball" mode and (not necessarily coincident because this is consistently a problem) access to the Contacts in Mobile me is also either very slow or simply unavailable!

  • I am trying to print labels from my address book, and when I change it to have the first names first, only some names work.  Does anyone know what the problem is or how to fix it?

    I want to print labels from my address book, but when I try to put first names first, only some will work.  Does anyone know why this is happening and how to fix it?

    Hi MollyPhloot07,
    I'm glad you found the coupons.com app and you might also want to take a look at the GroceryIQ app from the same company.  Please note that at this time, printing is only support from iPad to HP wireless inkjet printer.  That's most likely the reason why your Canon isn't displaying when attempting to print.  The other way to go might be emailing the coupons you want to your email address, then open that email and print from a conventional desktop or laptop computer.
    Hope this helps!
    Coupon Support

  • LDAP address book search slow

    Hi,
    I am using the LDAP server on Mac OS X Server 10.4 to store our corporate address book which is updated from a php based admin. The amount of contacts is around 700 now and searchs from Apple Addressbook are taking nearly 10 seconds. Is there a way of speeding this up hopefully to below 2 seconds?
    I don't know much about LDAP and have been trying to reindex the database by stopping LDAP and runnign slapindex, but this doesn't seem to have made a difference.
    Many Thanks
    Tim Pearson
    Grafika Ltd

    I have solved my problem. I don't think the indexing was a problem. I was running on 10.4.3 and had a process called nano using my processor at 100%. I noticed this and upgraded to 10.4.6 server which has cured the problem and now the LDAP search is almost instant.
    Regards
    Tim Pearson
    Grafika

Maybe you are looking for