Address book capacity or amount of memory per entry

I am working on a project that would add a shared database of contacts to a variety of handhelds. 
After searching this forum and others I can see that the address book capacity seems dependent on the onboard memory. 
Can any tell me or direct me to an estimate of the amount of handheld memory required per contact?
Ideally, I would like to get the memory per contact and the memory per contact w/attached photo. 
right now the database is Name, home address, DOB, notes, and User1-3.   Adding a photo is kind of pie in the sky considering that I don't have the photo files yet, but it seems a natural evolution of my project so...
Post relates to: Palm TX

I'd suggest you ask this question over at the Access Developer Network forum.  We're mostly End-user centric here! 
ACCESS Developer Network
WyreNut
Post relates to: Centro (AT&T)
I am a Volunteer here, not employed by HP.
You too can become an HP Expert! Details HERE!
If my post has helped you, click the Kudos Thumbs up!
If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

Similar Messages

  • 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

  • Mac Mail & Address Book - Capacity & Storage

    Hi all - I have a question regarding the maximum capacities for MacMail & Address Book.
    MacMail
    Is there a maximum number of messages that can be housed in any given folder? I know it's a good idea to move messages from say, the Inbox, to a sub folder to keep the application running at peak. But what about Sent or Trash? Should messages in these mailboxes be cleared to sub folders on occasion? Also, before anyone says anything about deleting messages, this is not an option ; )
    As a rule, we've been moving messages from Trash to sub folders on an iMac running 10.4. Our Macbook pro however does not allow for messages to be moved into sub folders from Trash. Why would this be?
    At the moment on the iMac the number of messages in a sub folder called Storage (moved from Trash) is 25K. I wonder if this will max out eventually and wipe messages, as happened about 6 months ago in the Trash folder? Is there industrial strength email software that works great on a Mac?
    *Address Book*
    Similar to the MacMail question. Is there a maximum number of contacts that one can have using Address Book? Does anyone have a recommendation on an industrial strength solution for contact management that plays nicely with Mac?

    Gee it's very quiet around here..

  • Address book is using too much memory

    After my computer slowed dwon, I checked activity monitor to see address book using between 80 - 90 % of the CPU. I closed Address book and reopened. same issue.
    Tried deleting preferences and rebuilding metadata.  Running Lion 10.7.3 on a new imac

    Back up all data if you haven’t already done so. Before proceeding, you must be sure you can restore your system to the state it’s in now.
    Quit the application if it's running.
    Open the Library folder in your home folder as follows:
    ☞ If running Mac OS X 10.7 or later, hold down the option key and select Go ▹ Library from the Finder menu bar.
    ☞ If running an older version of Mac OS X, select Go ▹ Go to Folder… from the Finder menu bar and enter “~/Library” (without the quotes) in the text box that opens.
    From the Library folder, move the following item(s) to the Desktop (some may not exist):
    Address Book Plug-Ins
    Application Support/AddressBook
    Preferences/com.apple.AddressBook.abd.plist
    Preferences/com.apple.AddressBook.plist
    Launch the application and test. It should behave as if you were launching it for the first time, with no data. Same issue?

  • Address book has a secret life? Double entries.

    I notice that quite a few of my records now have double entries — not for ALL of the info, but like just for mobile phone numbers or work numbers. And not all records have these. Strange. Anyone else seeing this?

    This can happen if you sync 2 address books for the following reason:
    In establishing Address Books on 2 computers or editing any item the 2 AB's will have part of the entry different if a different typing of the info occurs, eg one phone no has international format, the other doesn't or one has spaces between numerals, the other doesn't. This is because the computer reads them as being different information. Hence in the syncing process it will add the 'different' information. I'm not aware of a technique other than great care in entry of info of avoiding this.
    Neville

  • Address book capacity

    How many enties can I make, it there a limit for contacts?
    macbook   Mac OS X (10.4)  

    There is probably a recommended limit but I'm not aware of what if any the limit might be.
    How many entries are you talking about?

  • 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

  • ICloud Address Book Duplication and Calendar Not Syncing

    Hi guys,
    I recently upgraded to iCloud despite the number of issues I read about on these forums. My initial reaction was a positive one but now I have two things I am struggling to work out:
    My Address Book's search function completely froze up, meaning I couldn't type in the name of the person and they came up. I solved this by deleting an Address Book file in the Library as per a post on these forums. However now when I turned iCloud back on I have ALL of my contacts TWICE. The worst part is that merging them does not work as the system says they are coming for two different sources. Any suggestions? They only list ONCE on the iPhone.
    My Calendar is not syncing from iCloud onto my iPhone. I update the Calendar on my laptop but my iPhone calendar does not get any changes to it unless I sync from iTunes. I have iCloud Calendar sync turned on on the laptop and the iPhone. Can you help?
    Thanks a lot in advance for anyone able to assist me with these issues. Really appreciate it.
    Best regards,
    Juha

    Solved it myself. What I did:
    1) I have four Lion OS and two iOS devices.
    2) I kept one computer with the complete address book I wanted to start with but disconnecting it from iCloud's Contact sync via Apple Menu > System Preferences > iCloud uncheck Contact Sync
    3) Logged into iCloud.com and deleted all the contacts and groups manually ( many keyboard shortcuts worked )
    4) On the main computer, using textedit, I replaced semicolons I was using to delimit items in the notes field with backslashes.
    5) Once I confirmed all the other computers and devices had no entries in Address Book, on the main computer I turned back on iCloud Contact syncing. It worked. Correct count of entries and no more breaking notes at the semicolons!
    6) Immediately all the other iCloud computers and devices updated to the correct notes! Finally.

  • Email address from address book on E72 and removin...

    Hi,
    I like my E72 but I have two problems that really annoy me.
    1. In the past when ever I would write a new email I would get list of suggested email addresses in the "To" field. For example, if I would was to write the letter S I would get the email address of the people in my address book whose name starts with an S (sam, Sofia etc).
    for some reason this feature stopped working on my phone and I can't find how to make it work again. if I want to send an email I need to manually write the email address in the "To" field.
    The auto suggestion feature works perfectly on my wife's phone (an E72 with the same firmware – 22.007) but on my phone it won't suggest email addresses from my contacts.
    2. Another problem is that my Gmail that is synced to the phone, through the Nokia Messenger server is locked on "hide emails older than 2 weeks". Now, I have hundreds of emails stored on my phone that dates to February 1st – the day I got the Phone!
    Is there a way to delete these emails automatically, without deleting them on the Gmail account itself? It makes my phone really when going through the emails.
    Thanks in advance,
    External

    Hullo all...
    I've fixed the problem with my email service on E72. The thing is, there's something wrong with the Nokia Messaging service. So I turned the service off. But you must remove the inbox properly, that is from the web site email/nokia.com, and manage your inbox from there and not from your cell phone.
    Remove it, and make a new settings on your E72 for your preferable mailbox. When they asked you about to accept or decline the Nokia Messaging service, declined it, and set your mailbox without using Nokia Messaging. Yes the e-mail doesn't instantly sent to your inbox, but you can set the timing to always enabled synchronization, and set it to every 5 minutes. It will delivered flawlessly to your E72, and you'll get a full control for your inbox and everything without being 'locked' by nokia messaging. You can decide how much email you'd like exactly in your inbox, sent, etc. You can decide the period and everything. The device are fully functional and do very well job in maintaining email, but not Nokia Messaging. (Nokia Messaging Team, please take a serious action.)
    This step will also fix your problem on email address from address book on E72. I don't really know what the connection between them, but it seems that it needs to connect to the internet to make this feature enabled. (it's kind of strange since the email in the address book is in the phone memory, not in the 'cloud' server). It sometimes happen if you don't have the internet connection, but once you had it, the problem solved.
    I hope this will fix your problem. Let me know
    AL

  • Multiple entries in iCal and Address book

    why after upgrading to lion and iOS5 does my address book and calendar have triple and quadruple entries for the same event?

    Probably because of iCloud since I assume you started it up on both Macbook and a mobile device.

  • Problem synching iPhone with Yahoo address book contacts

    Basically what is happening is when I sync most of the yahoo contacts transfer to the iPhone just fine but then I get a message telling me that all of the contacts could not be copied, try again later. I look and it stops after the letter "T". Ive tried several times even after a reboot. I also noticed that when I created a new contact on the iPhone it doesnt get synched over to my yahoo contacts. Any help is appreciated.
    thanks
    Angelo

    What advanced settings are you referring to on the iPhone? The only advanced I have is under my yahoo email account. Update since I last posted, I tried deleting the few entries after the letter "T" that were not synching to the iPhone and recreated them and they now are synching fine but the sync is only working one way, if I create a new contact on the iPhone it shows up in my yahoo address book but if I create a new entry in my yahoo address book and do a sync, it does not sync over to the iPhone.

  • Multiple Address Book entries from iPhone

    When I add a single contact using iPhone (3GS, Ver 4.1) as it syncs to MobileMe, anywhere from 1 to 9 additional copies of the exact same contact card are created. Of course they’re propagated throughout my various Macs and iPad, as well as MobileMe.
    This does not happen when adding a contact to the iPad or any of the 4 Macs I’ve got synced to MobileMe to keep my calendar and address books up to date.
    Does anyone else have this issue, and if so, what’s the fix?
    Thanks in advance for any thoughts or suggestions.

    Yes ... I am experiencing the same issue. Seems no matter how I adjust the iPad preferences, I continue to get multiple entires in my address book.
    I do not get multiple entries in my macBook or my iPhone.
    Bill Siegrist
    [email protected]

  • Thunderbird can't send email to addresses in Address Book because of formatting error

    My Thunderbird can't send email to an address picked from the Address Book. It gives the following error:
    "An error occurred while sending mail. The mail server responded: 5.1.1 <"name@telconame"@telco.com> Unknown recipient. Please check the message recipient "name@telconame"@telco.com and try again."
    You can see that Thunderbird has garbled the name/address pair: "name@telconame"@telco.com" so that it's unworkable.
    If I type the email address by hand, it sends the email OK. But it can't retrieve an address from the Address Book without garbling the name/address pair. Win 7, TBird Version 32.0; it's the same in SafeMode.
    Any ideas?

    Make two Address Book entries for him; one for each of his e-mail addresses. Make a new Address Book group and put both of his entries in it. When you send him an e-mail just type in the name of the group in the To: field.

  • How can I get my address book data back?

    After upgrading to OS6, my address book has gone from almost a thousand entries to being totally empty.
    This is a *very* big deal for me bc I have no address book application on my PC.
    I had always assumed that if iTunes were backing up my iPod, that I would be able to restore from those backups, but now I cannot figure out how to tell iTunes to restore from a backup.   I've got a backup... just cannot restore from it.
    There's got to be a way.... and I'm probably looking right at it and not seeing it.

    It has been a very long time since I used 10.1.5 but Address Book data is not stored in a .plist file.
    The Address Book data should be located in an Addresses folder at Home > Library > Addresses.
    Locate this folder and with the Address Book application quit, move it back to the proper location.

  • How do I recover my contact list which I lost while transferring it from iPhone 3GS to windows address book via iTunes, How do I recover my contact list which I lost while transferring it from iPhone 3GS to windows address book via iTunes

    How do I recover my contact list which I lost while transferring it from iphone3gs to windows address book.

    Did you try and sync it with an address book on your computer that contained no entries at all?  If so, then they are gone.
    IF you backed up the phone before trying to do this, you may be able to recover some of the information using 3rd party software to try and extract it from the backup. I have no personal experience with any of these programs, so I'll leave specific recommendations to others who do.

Maybe you are looking for

  • HP OfficeJet Pro 8610 Always Prints in Landscape (OSX)

    My HP 8610 runs on a Mac OSX and I cannot figure out how to get it to print in a portrait format.  It ALWAYS prints in landscape.  I've looked through every setting, etc., has to be something easy.  I tend to use the Firefox browser when printing. Th

  • Nokia N8 - old captured videos not showing in gall...

    Not holding out much hope on this since I've seen a couple of similar problems elsewhere with no solution. Anyway after a reset and reinstalling Belle as my c: drive was full, my Gallery now only shows photos and new videos I have taken since the rei

  • MOVED: Intel Turbo Boost Not Working

    This topic has been moved to C and S Series. https://forum-en.msi.com/index.php?topic=253752.0

  • Pre-order at BestBuy???

    Just wondering, because I heard that BestBuy will have 30 16gb and 15 32gb. Does this mean that only 45 who pre-order will get their phones on launch day. Or are the 45 phones available for those who didn't pre-order and just walk into that store tha

  • I want the specification manual for NI PXIe 5611

    i want the specification manual for NI PXIe 5611