How do I transfer data from an sd card to another card ? Never tried .

My son has the same make of sat nav in his car as mine, a Garmin. On mine I have an sd card that has the 2009 maps on it for the UK, my son's has the much older version.
Can I transfer the data from the card in my sat nav onto the card in his sat nav to up-date his maps ?
If so ..how. ??
I have a macbook laptop, OS 10.4.11. I have a card read/writer gadget usb2.0 mac compatible.
I have no idea what to do though so some step by step instruction would be very much appreciated.
Thanks

Put your card in the reader and put that into the Mac.
Drag whatever you want from the card onto the desktop.
Now put another card into the reader and drag that which is on the desktop onto the second card.

Similar Messages

  • How do i transfer data from one internal tabe to another.

    Hi All,
             How do i transfer data from one internal tabe to another.
             Can i do it ebven if he tables are different in structure.
    Please Advice.
    Thanks in advance.

    Hi Saket Tiwari,
    I hope the earlier post by kashyap is good enough an answer. anywas in addition to it let me give a detailed
    explanation of how you can populate an internal table.
    1) Append data line by line.
         Syntax :  APPEND [<wa> TO / INITIAL LINE TO] <itab>.
    this appends new line to internal table <itab>.
    2) Using COLLECT statement.
                 COLLECT is another form of statement used for populating the internal tables.  Generally COLLECT is used while inserting lines into an internal table with unique standard key. The syntax for COLLECT statement is as shown
         Syntax : COLLECT [<wa> INTO] <itab>.
    3) Using INSERT statement
         Syntax  INSERT [<wa> INTO / INITIAL LINE INTO] <itab> [index <idx>].
    INSERT statement adds a line/work area to the internal table. You can specify the position at which the new line is to be added by using the INDEX clause with the INSERT statement.
    Now coming to your request..
    To append part or all of an internal table
         Syntax
                  APPEND LINES OF <itab1> [FROM <n1>] [TO <n2>] TO <itab2>.
    *     Note:
    Without the FROM and TO options, this statement appends the entire table <itab1> to <itab2>.*
    b) To insert part or all of an internal table into another internal table
         Syntax
              INSERT LINES OF <itab1> [FROM <n1>] [TO <n2>]
              INTO <itab2> [INDEX <idx>].
    c) Using Move statement.
    To copy entire contents of one table into another in one execution
         Syntax MOVE  <itab1> To <itab2>.
                   OR
              <itab1> = <itab2>.
    but u hav to be careful because he contents of itab2 will eb overwritten on the execution of this statement.
    These copy the contents of ITAB1 to ITAB2. Incase of internal tables with header line we have to use [] inorder to distinguish from work area. So, to copy contents of internal tables with header line  the syntax becomes,
    ITAB1[] = ITAB2[].
    Coming to the letter part of your question, Yes, we can copy values between tables having different structures.
    for this we use    
                                MOVE-CORRESPONDING <itab1> TO <itab2>
        this executes the statement for their header lines. Searches for the sub-fields which occur both in itab1 and itab2 and then generates, for all relevant field pairs which correspond to the
            sub-fields ni , statements of the form MOVE itab1-ni TO itab2-ni. The other fields remain unchanged.
    I hope the information provided has been of your help.
    Reward if useful.
    Regards,
    Jose

  • How do I transfer data from one exterior harddrive to another?

    How do I transfer data from one exterior harddrive to another when they are both connected to our Imac Desktop?

    Depends what you want to transfer...
    A few more Details about what you are trying to achieve would be good.

  • How do I transfer data from one hard drive to another

    I just bought a bigger external hard drive and I want to transfer all my data from the old smaller external hard drive? How do I accomplish this? I see the all the data and can highlight the files but I can not drag them on to the new external drive. How is this done?

    https://discussions.apple.com/message/17323813?searchText=How%20to%20Transfer%20 Data%20to%20New%20Hard%20Drive?#17323813
    Check out this answer, hopefully you have figured it out by now if not oh well

  • How do i transfer data from one Time Capsule to another?

    We ran out of space on our old Time Capsule, so I purchased the 2TB model. Problem is that there are no direction (that I can locate) on how to switch over from one device to the other! Can anyone direct me to some online instructions?

    The great Pondini.. wonder of TM
    http://pondini.org/TM/18.html
    saves the day.
    But IMHO.. start a fresh TM backup on the new TC.. preserve the old TC for posterity.. about 6months.. after which time if you didn't need anything on it you won't.

  • How can you transfer data from one ipod to another ?

    How can you transfer data from one ipod to another ipod ?

    The geniusbar told me what to do, I understood but there is still a problem for me >:/ It's not showing up though. Like "device."  Nothing is happening, and I tried as soon as I got home. Then after half an hour, then an hour, then 3 hours. My problem is that it's not showing up! It's stuck in recovery mode! There's still like 25% battery. So I have no idea why.

  • How do I transfer data from one iPhone to another?

    How do I transfer data from one iPhone to another?

    If your old device is an Apple using iOS 5 or later, and you have an iCloud account, you can transfer all your saved messages, email accounts, photos, notes, and other personal settings to your new iPhone.
    Here's how...
    Connect your old Apple device to WiFi and to a power source.
    Back it up to iCloud by going to Settings > iCloud > Storage & Backup and toggling iCloud Backup on. The time it takes to ba ckup depends on how much data you have and on the speed of your internet connection.
    iCloud backs up your device once a day. If it needs backing up before you transfer to your new iPhone 5, tap Back Up Now in Settings > iCloud > Storage & Backup. Do not start transferring before the backup is finished.
    Turn on your new iPhone and complete the setup by selecting your language and country, and choose whether to enable Location Services. When prompted, choose your WiFi network.
    When prompted to set up, choose Restore from iCloud Backup, tap Next, and enter your Apple ID and password.
    Select the backup of your old device and tap Restore. Wait until the device has finished restoring from the backup.
    When the restore process is complete, your iPhone will restart and be ready to use.
    Connect your iPhone 5 to iTunes to sync data not contained in the backup (such as music, videos, apps, and so on). You can choose the data that are synced by clicking the syncing tabs in iTunes.

  • HOW TO TRANSFER DATA FROM ONE INTERNAL TABLE TO ANOTHER

    FOR PERTICULAR OBJECT ID ONE INT TABLE JTAB CONTAINS ONE RECORD(ROW) AND ANOTHER INT TABLE KTAB CONTAINS 3 RECORDS(ROWS). THEN HOW I SHOULD TRANSFER DATA FROM KTAB TO JTAB? WHAT R THE VARIOUS WAYS TO DO THAT. PLS HELP ME OUT. THANKS IN ADVANCE

    Try something like
    If you want one record per ktab :
    LOOP AT jtab.
      MOVE-CORRESPONDING jtab TO itab.
      LOOP AT ktab WHERE id = jtab-id.
        MOVE-CORRESPONDING ktab TO itab.
        APPEND itab.
      ENDLOOP.
    ENDLOOP.
    or
    LOOP AT ktab.
      READ TABLE jtab WITH KEY id = ktab-id. " binary implicit if sorted type
      MOVE-CORRESPONDING jtab TO itab.
      MOVE-CORRESPONDING ktab TO itab.
      APPEND itab.
    ENDLOOP. 
    If you want to sum ktab ratio into itab for each jtab
    LOOP AT jtab.
      MOVE-CORRESPONDING jtab TO itab.
      LOOP AT ktab WHERE id = jtab-id.
        ADD-CORRESPONDING ktab TO itab.
        APPEND itab.
      ENDLOOP.
    ENDLOOP.
    Use sorted type table when LOOP AT WHERE, else SORT table is enough.
    Regards

  • How do I transfer data from one time capsule to new time capsule when TC backs up an iMac and Power Book

    How do I transfer data from one time capsule to new time capsule when TC backs up an iMac and MacBookPro

    It is generally better to leave the old backups and start again.. unless there is something you particularly need.
    But if you desperately want all the old backups you have to copy the sparse bundles.. this will take very long time as it must copy via the computer..
    http://pondini.org/TM/18.html
    Take particular note of the initial comments.. ie before you read how to do it.. don't do it.

  • I am going to purchase the latest Mac Book Pro. How do I transfer data from my very old Macbook running OS 10.4?

    I am going to purchase the latest Mac Book Pro. How do I transfer data from my very old Macbook running OS 10.4?

    You may want to use the Migration Assistant, which appears the first time you start up the new machine during setup, and also is available later (it is found in /Applications/Utilities.) Note that if you are running 10.4.x on the old MacBook both machines need to use FireWire to do this, but the late 2006 MacBook has that. You will need a special 4 pin to 6 pin FireWire adapter cable, as the FireWire ports on the newest MacBook Pros are different.

  • How do I transfer data from my old phone to my new phone?  Old phone works but the screen is broken

    How do I transfer data from my old phone to my new phone?  Old phone still turns on, but screen is broken

    Backup Assistant will download your last saved to network contact/phone numbers. Look on phone menus my Casio has it listed under contacts but mfg's differ on where to actuate. Call *611 and get V rep.

  • How do I transfer data from my passport to my macbook?

    How do I transfer data from my passport to my macbook?  It recognizes the passport as I can see all of the information, but I can't get away from the "checking for sources" spinning wheel.

    There's several options available, they're not perfectly but from my experience they work just fine. Here's an example of just two -
    Move2Mac - http://www.detto.com/move-2-mac-overview.php
    Belkin Transfer System - http://www.amazon.com/Belkin-Mac-Transfer-Kit-White/dp/B001GTM4HQ
    You can also wire the two machines together via Ethernet and network them together but you'll require the USB-to-Ethernet adapter for the MacBook Air.
    Also as Kenneth suggested, there's the option of using an external HD and migrating.

  • How do i transfer data from my old imac to my new macbook pro?, how do i transfer data from my old imac to my new macbook pro?

    HOW DO I TRANSFER DATA FROM MY IMAC TO MY NEW MACBOOK PRO? I tried it with an ethernet cable and it seems to go OK till it gets to applications. From there the time it takes to complete seems to increase rather than decrease!

    That's the easiest way, this side of using Time Machine. The time it takes to transfer files between our computers ka vary but while doing it on my MBP I had to leave it plugged in for near 24 hours and it was supposed to take 3.

  • How do i transfer data from my old macbook to a new macbook pro?

    how do i transfer data from my old macbook to a new macbook pro?
    i have an ether net cable will this help?

    I've used Migration Assistant in the past and it's working like a champ. You either want to connect your MBPs using a Firewire cable or have them connected to the same router with Ethernet cabling. Don't attempt a wifi transfer - it could take a whole day.
    Both links provided are good - they both point to various ways to transfer data. I just prefer MA.
    Clinton

  • How do I transfer data from an old MacBook to a new MacBook air?

    How do I transfer data from an old MacBook to a new MacBook air?

    Everything you need to know, right here. Make sure you read through it BEFORE you turn on the new Mac for the first time. This is because the preferred means is using Setup Assistant, which is only available form the first boot.
    http://pondini.org/OSX/Setup.html

Maybe you are looking for

  • Aperture - multiple versions

    Hi all, As you might know, Aperture easily gives one the possibility to create multiple versions of a photo, e.g. a B&W version, a color cropped version,... In Aperture these photos are grouped in a stack - but can be considered as independent photos

  • Folders opening in bridge by default instead of explorer

    hi, Recently i installed adobe photoshop cs5 extended. After installing now when i  try to open any folder by double clicking on it, it opens in adobe  bridge..  I have to right click on the folder and then OPEN, then only it opens in explorer. It's

  • Line item display on GL account

    DearAll, my GL is line item display already,then there are transactionts posted in that GL,but still no line item display?and i have to run RFSEPA01. but GL is line item display already,why still need that program to update the relevant table

  • Alternatives To X/Windows For Arch Linux

    Hi, In general, I greatly prefer running under Linux as compared with Windows. Please don't misunderstand me - I think WIndows 7 is a very nice piece of work, and the fact that it remains more or less compatible with earlier and much less accomplishe

  • Account assignment tab

    Hi All, We have created a project in PS. While generating Purchase Requisition thru MRP in MD51, account assignment category (Q) is coming, but the account assignment tab is missing in the purchase requisition. But when we are generating PR thru CJ20