Merging Tiger Address book contents with ML Contacts

Hi,
Since late December I've been the proud owner of a (gorgeous new) 27" iMac. This has replaced my old G5 workhorse which is running Tiger. The two are running side-by-side until I get everything migrated and converted.
For the past couple of months I've been adding new contacts, as they come in, to 'Contacts' on the iMac. However I have to bring over all my old contacts from Address Book on Tiger.
With hindsight I guess I shouldn't have done it this way but attempeted to bring them all over on day one. But I'm here now and I have lots and lots on Address book in Tiger and some in Contacts on Mountain Lion. I need both sets.
Any help as to how I can merge the two onto Contacts on the iMac will be much appreciated.
(If it makes any difference I don't use mail.app by the way but my Contacts are synced with my iPad).
Bob.

On the Tiger machine, export the contacts as vCards. If you have notes, make sure to select the option to save the notes on export--I don't know if Tiger Address Book had those options. It should produce one vCard with all contacts in it, but it may make one for every card. I can't remember what Tiger will do.
Back up Contacts on the new Mac using File>Export>Contacts Archive.
Move them over to the new Mac and double-click the vCard to import them into Contacts. It should not ask you to replace them, but if it does, cancel the import.

Similar Messages

  • Address Book Sync with Google Contacts across computers (instead of iCloud with Lion)?

    I am trying to get ready for the port to iCloud and i am going to do this while still on Snow Leopard per Roger Wilmut's fantastic documentation. It appear to me I will simply lose Bookmark Sync (until I move to Mountail Lion) which is a small(ish) price to pay to not have to deal with an upgrade at the moment.
    The question I am hoping to answer is if it will be possible to SYNC MY CONTACTS across my devices (MacBookPro, MacPro and iPhone) using the Sync with Google Contacts Option in Address Book Preferences.
    Does anyone know if checking this option will put these contacts on both of my Machines and on my iPhone?
    ALSO, does anyone know if it is possible to put the ADDRESS BOOK CONTACTS in one folder and the GOOGLE CONTACTS in another folder so they don't all get mixed up together?
    TIA

    I can't even get manual Google syncing to work with iCloud enabled. Without iCloud, everything works fine.

  • Address Book sync with Google Contacts

    Hi,
    Does anybody have a good solution to syncing the Address Book with contacts in Google. I don´t have an iPhone

    If you google you'll find a workaround to do what you need.
    Bye

  • Address book sync with google contacts - first names and last names flipped

    Hi,
    I am trying to sync my mac address book with my contacts in google/gmail and I have a strange issue.  All my contacts written in english alphabet is syncing correctly, but when I have names in Korean characters, the last name and first name gets flipped.  Without fail.  All other fields seem to synch correctly, but the first name is mapped to the last name field, and vice versa.  I have recently upgraded to OS X Lion on an iMac.
    Any help would be greatly appreciated.
    Jay

    can anyone answer this?
    at some point, I remember being able to do this. 10.5.x maybe? With 10.6 . . . .
    I do recall, however, that I stopped doing it because the sync went haywire. I did it the other way around: I have all my contacts in Address Book, so I exported them and uploaded the vCards to Gmail, after deleting all Gmail contacts. That's not such a great option. Surely this is well-automated by now?

  • Address Book sync with google contacts *without* iPhone?

    Hi
    I have all my contacts in google, but when I set this up in address book, although it says it will synch with google, it never does. I have read that this needs an iphone to work - I don't have an iphone, so how do I set up 2 way sync between google and address book, without buying mobileme or some such tool...
    Shaun

    can anyone answer this?
    at some point, I remember being able to do this. 10.5.x maybe? With 10.6 . . . .
    I do recall, however, that I stopped doing it because the sync went haywire. I did it the other way around: I have all my contacts in Address Book, so I exported them and uploaded the vCards to Gmail, after deleting all Gmail contacts. That's not such a great option. Surely this is well-automated by now?

  • Address Book sync with Google Contacts problem

    After creating a Google Apps account for my new domain, I've configured my Address Book application on my Mac-book Air to sync with Google. I created a contact on the Mac-Book and after a sync I saw it in Google's web client. I created a contact on Google's web client and after a sync it appeared in in Address Book.
    After two weeks, the sync stopped working. I didn't changed nothing on the computer. Suddenly I noticed that the contacts sync doesn't work anymore.
    iCal and Mail are still working great. the problem is only with Address Book.
    I searched Google Help. I reset the Sync Services, soft and hard, still not working. I'm not using iCloud or any other sync.
    Do you have any idea?

    can anyone answer this?
    at some point, I remember being able to do this. 10.5.x maybe? With 10.6 . . . .
    I do recall, however, that I stopped doing it because the sync went haywire. I did it the other way around: I have all my contacts in Address Book, so I exported them and uploaded the vCards to Gmail, after deleting all Gmail contacts. That's not such a great option. Surely this is well-automated by now?

  • How to export Address Book content as Unicode with applescript?

    Hello,
    I have a problem for exporting address book content. I'd like to export "My Card" to a vcf file and use another application to read it. So I have the following applescript:
    *+tell application "Finder"+*
    *+set theFolder to folder "TemporaryItems" of folder "Caches" of folder "Library" of home+*
    *+end tell+*
    *+tell application "Address Book"+*
    *+set theVcard to (vcard of my card) as Unicode text+*
    *+set theFile to (theFolder as text) & "myCard.vcf"+*
    *+set theFileHandle to open for access theFile with write permission+*
    *+-- write (ASCII character of 254) to theFileHandle+*
    *+-- write (ASCII character of 255) to theFileHandle+*
    *+write theVcard to theFileHandle+*
    *+close access theFileHandle+*
    *+end tell+*
    OK, now the problem is that if "My Card" has any double-byte characters like Chinese or Arabic, the output file will just hold some question marks ("??"). The code works in Tiger but not Leopard. (Add char 254 and 255 just to make it a UTF16-BE file. So it doesn't really change the result of this script.)
    I started digging and guess here is the reason: in the following statement the "vcard of my card" will always return plain text:
    +*set theVcard to (vcard of my card) as Unicode text*+
    I got this clue from the help of ScriptEditor:
    +*vcard (text, r/o) : Person information in vCard format, this always returns a card in version 3.0 format.*+
    But in Tiger, you can see:
    +*vcard (Unicode text, r/o) : Person information in vCard format, this always returns a card in version 3.0 format.*+
    Any workaround to solve this problem?
    (And if this is not the right place to ask such question, please just let me know.)
    Thanks a lot!
    Calvin

    Hello Calvin,
    Since your code works under OSX10.4 and fails under OSX10.5, the cause would be the change made in AppleScript 2.0.
    Try -
    write theVcard as Unicode text to theFileHandle
    instead of -
    write theVcard to theFileHandle
    The read/write commands in AS 2.0 have been change so that they will always interpret the text in system's primary encoding if 'as Unicode text' is not specified in commands' parameter.
    cf.
    http://developer.apple.com/releasenotes/AppleScript/RN-AppleScript/index.html
    Unicode Support
    http://developer.apple.com/documentation/AppleScript/Conceptual/AppleScriptLangG uide/
    pp. 151-153, 168-169 (of pdf version)
    Commands Reference > read, write
    Hope this may help,
    H

  • Merging 2 address books without overwriting

    I want to add the contents of the address book on my office desktop IMac running leopard 10.5.6 into the address book on my black macbook laptop also running 10.5.6. is there a way to do this without completely overwriting the contents on my laptop? I don't want to lose what's already there, only add in the additional names and addresses. There is no security issue. I own the company and both machines.
    Thanks for any help or suggestions.

    Hi,
    So here's what I did. My iMac G5 running Tiger blew up (logic board) and, while I wait for my new 27" iMac, I needed to put all the contacts from the old iMac on my macbook (running Leopard), where I keep different contacts. Since I couldn't open the iMac contacts and export them as vCards (because that computer was dead and all the user data is backed up on an external HD) for instance I needed to merge both address books another way.
    After reading through all these discussions and the ones on macrumors, and realizing that Address Book doesn't come equipped to do this easily (probably to get you to pay for a mobileme account) I took a deep breath and just did the following: Created an archive of the existing contacts on my macbook and then moved the entire macbook ~library/application support/Address Book folder to some place safe just as a backup of those; then copied the same folder from my iMac backup archive into that location on the macbook. Voila, not only did all my old addresses appear, but all the macbook ones were there too, without having to reimport them. No idea why this worked but it did. WOuld love however if someone more knowledgeable has an explanation.
    Couple of notes. I tried using migration assistant, but I couldn't figure out how to get it to just migrate the address book and nothing else from my iMac user account backup. Don't want all that stuff on my macbook. Also, if you try to import an Address Book Archive, it warns you that it will delete all current addresses, so won't work to merge two different address books. And if the macbook addresses had appeared magically, my plan was to export all the addresses from the iMac that were now available on my MacBook, then replace the ~library/application support/Address Book folders again and import the vCards.
    Final note, you'd think it would be easier to synch the addresses books on two computers. I'm sure plenty of folks have both a desktop and laptop they use for different things but would like to have all their addresses available on both machines. But, as I said, I suspect it has to do with drumming up mobileme business.
    Anyways, I hope this helps someone else and I'd love some feedback on why this worked.

  • Merge two address books

    hi i have two computers
    how i merge the address books on both into one
    also, how do i ensure i do not end up with duplicates
    thjanks

    Greetings,
    If you are a MobileMe subscriber you can turn on Addressbook syncing on both computers. This will automatically compare both addressbooks and update them so they match.
    Alternatively:
    _Go to each addressbook and click on "All Contacts" in the upper left
    _Go to File > Export > Group vCard
    _Take the resulting vCard file to the other computer and open the file up
    __Once the vCard is imported go to Card > Look for Duplicates
    ____This will scan for and resolve any duplicates although you may want to go through afterword to make sure it go them all. Any remaining duplicates can be resolved by highlighting the duplicate cards and going to Card > Merge Selected Cards (or just deleting one of the duplicates)
    Cheers.

  • How to Merge 2 Address Books

    Hi folks. Just wanted to know if anybody knew how to merge 2 address books. I don't mean two identical or similar contacts. Whole address books.
    A duplicated, put into B machine. They both took on separate lives.
    This is what I am thinking:
    - A backed up.
    - B exported.
    - B imported into A, conflicts resolved (that could take some time, if it's manual, as my book has 1600 cards)
    - A (which is new), exported, put back into B.
    Any ideas?
    Cheers

    Well, unfortunately, Address Book doesn't have a function to compare then only merge identical cards. Its four import options are Keep Old, Keep New, Keep Both, and Update. The Update option is closest to what you want, but it will assume that contacts with similar fields (like the John Q Public example I gave earlier) are the same person and will combine them into one (I found this out the hard way).
    Your best bet I think would be to export All Contacts for each Address Book as a single vcard (this is the only format that Address Book natively exports), open in a spreadsheet/database program that can compare and merge identical fields, and do the combine there. Address Book can import .csv files, so something like Excel or Araxis Merge (➚) might be able to do it (I don't know if Excel's Merge Workbooks function is applicable in this case).
    Perhaps other people have suggestions on how to only combine identical cards. I don't know programming, so AppleScript and Terminal puts me out of my depth. For what you want to do, Address Book's import/export functions are insufficient by themselves.

  • How to move Mail and Address book content from 10.3 emac to 10.5 iMac

    How do I move Mail and Address book content from my old 10.3 emac to my new 10.5 Leopard iMac directly, or do I have to move the names etc, one by one?
    Richard

    I cannot find a migration assistant. I have copied the Mail and Address Book applications over from 10.3 to 10.5 and tried using mailboxes import, but 10.5 Mail will not accept any of the options. The same for address book. Can you give more specific instructions?
    The applications, Mail and Address Book, don't actually store your data in the application. So, moving the applications over to your new computer will have no useful effect and could be detrimental if you replaced the newer versions with the old.
    Migration Assistant is in you Utilities folder and should have asked to be run during the installation.
    Your Mail data is stored in yourUserName/Library/Mail. The Address Book data is stored in yourUserName/Library/Application Support/AddressBook. If your new installation is blank with no data, you can actually replace those directories on the 10.5 version with the old. For Mail, you also have to get the com.apple.mail.plist file from your old username/Library/Preferences/ folder and put it in the new 10.5 folder of the same name. Once that is done, when you open Mail and Address Book, they will update the data to the new format.
    Migration Assistant will do all of this for you.
    EDIT: Based on roam's comments, you may have to move the Mail manually. You can also just bring the Mail directory over to the 10.5 machine and use Mail's Import command to get all the mail out of the old Mail directory.
    Message was edited by: Barney-15E

  • How can I get Address Book Server to share contacts between users?

    I want to have a Shared Address Book for the users on my installation of OS X Lion Server. Users will keep their own contacts individually but there are certain lists and contacts who need to be shared between users and I can't find any way of getting Lion Server to do this. I know it was a problem in Snow Leopard Server but I hoped it had been fixed.
    Any suggestions?

    Create a new user on the Server called 'ouraddressbook' or whatever. Exit the Server. Into Address Book on your Admin/Client machine create a new Account. Account type is CardDAV, Username and Password the same as the User you created on the Server… 'ouraddressbook' or whatever, and then enter your Server's address as text or numbers. Click creat and the rest is straight forward. Now give the set up details of that new Account to the others who want to share your 'ouraddressbook' with you.The Clients must have, I think, Mac OS 10.6  or upwards to have an Address Book that with co-operate.
    You will see a new group in Address Book.
    If you don't already know, do not add accounts to Address Book or iCal on the Server. Everything is Admin and Client Side. In the beginning I was also adding accounts to iCal and Address on the Server. It works fine but it is just one extra thing that could become corrupted. Let the Server 'serve' the Users you create on it.
    Hit me if you have problems.

  • Is Address book compatible with Outlook

    Hi,
    I'm usine Msft Outlook at my office to handle emails. Is the Mac Address Book compatible with Outlook as for imports/exports so that I can update my contacts from office and vice versa?
    Thx
    Simon

    Hi,
    Address Book "should" sync with an OWA server... I never got it to work, but some colleagues of mine do...
    I (mis)use Entourage to do the syncing from time to time (hate the app though), and I also use AddressX from Snerdware to sync Exchange's GAL...
    Regards,
    Roger

  • "...cannot use the application "Address Book.app" with  'leopard.'...????

    I get the message: "You cannot use the application “Address Book.app” with this version of Mac OS X. "What does this mean, wat do I do? Do I lose my address book.?

    you can do the following to transfer your Tiger addressbookdata file to Leopard if none of your other countermeasures are working.
    Create a new folder and give it a name such as TigertoLeopard data or whatever;
    then drag your Tiger addressbook data file into that folder;
    add .abbu to the end of the name you gave that new folder;
    remember where you placed the folder and use Leopard Mail import command.

  • My MacBook Pro will not sync address book changes with my IPhone.  Why?  It used to.

    My MacBook Pro will not sync address book changes with my IPhone.  Why?  It used to.

    Then you may have to try manually resetting the syncservices folder by following Julian Write's post (from https://discussions.apple.com/message/9274781#9274781):
    Ok, as you can't reset SyncServices in the "normal" way, you'll have to resort to the "other" way:
    Although it's not advised to do so in normal circumstances, you'll need to manually delete the SyncServices folder.
    Before doing so, you MUST make a backup of both your Contacts and Calendars:
    In Address Book, choose *Export > Address Book Archive...* from the File menu.
    In iCal, choose *Back up iCal...* from the File menu.
    Then, make a backup of the SyncServices folder located at:
    ~/Library/Application Support/SyncServices
    By backing everything up first, you don't risk losing anything.
    Finally delete the aforementioned SyncServices folder and restart the Mac. This will force Mac OS X to recreate the SyncServices folder, and hopefully fix your problem.
    I believe in Snow Leopard you can back up your calendar in File>Export>iCal Archive rather than File>Back up iCal as posted above.

Maybe you are looking for

  • Posting of IR and GR

    Dear Expert, I would like to understand the posting of GR and IR in PO. Sample as follows: PO amount  = MYR 4680   (1 pc) GR amount  = MYR 4680   (1 pc) Double entry upon posting: Dr. Exp Ac1     MYR 4680 Cr GR/IR Ac    MYR 4680 IR amount    = MYR 43

  • How to create an action to insert hundreds of different numbers for limited edition prints?

    Hi, I sell limited edition prints of a run of between 350 and 500. I am trying to get it set up so that my signature and the print number is included as part of the print. Here is an example: You'll see at bottom left there is my signature and undern

  • Publishing reports to Enterprise - Remote database access.

    Enterprise newbie. I can publish a report that accesses a database residing on the same server as Crystal Enterprise. Under the CMC, report process, database, I'm using the default report DB connections option. It runs fine in the user mode. The Prob

  • Skype Contact Online Message in Windows Ray

    I would like to capture when my contacts come online. Is there anywhere this information is stored? I do see the message pop up in the Wiindows tray, but I must be on my system in order to see. Is this information stored in a file somewhere? I want t

  • IBook G4 keyboard (option key?)

    Hello: I seem to have this very strange problem while typing on my iBook G4. Regardless of the application, as I am typing I get weird charecters which exactly resemble that of using the option key. I do use this key, for example, accents in peoples